Medic.Checks.NPM (Medic v2.0.1)

View Source

Checks that NPM exists, implicitly checking for NodeJS.

Examples

{Check.NPM, :exists?}
{Check.NPM, :require_minimum_version, ["7.8.0"]}
{Check.NPM, :installed?}

Summary

Functions

Checks that the packages declared in assets/package-lock.json are all installed.

Checks that npm install has been run at least once.

Checks that there is an npm executable installed locally.

Checks the installed version of npm is greater than or equal to the declared version.

Functions

all_packages_installed?(opts \\ [])

@spec all_packages_installed?(opts :: Keyword.t()) :: Medic.Check.check_return_t()

Checks that the packages declared in assets/package-lock.json are all installed.

Opts:

  • cd: The directory to run the command in.
  • prefix: Run npm with --prefix. Defaults to assets.

any_packages_installed?(opts \\ [])

@spec any_packages_installed?(opts :: Keyword.t()) :: Medic.Check.check_return_t()

Checks that npm install has been run at least once.

Opts:

  • cd: The directory to run the command in.
  • prefix: Run npm with --prefix. Defaults to assets.

exists?()

@spec exists?() :: Medic.Check.check_return_t()

Checks that there is an npm executable installed locally.

require_minimum_version(minimum)

@spec require_minimum_version(binary()) :: Medic.Check.check_return_t()

Checks the installed version of npm is greater than or equal to the declared version.