Use the npm Chef InSpec audit resource to test if a global NPM package is installed. NPM is the the package manager for Node.js packages, such as Bower and StatsD.
This resource is distributed along with Chef InSpec itself. You can use it automatically.
This resource first became available in v1.0.0 of InSpec.
A npm resource block declares a package and (optionally) a package version:
describe npm('npm_package_name') do
it { should be_installed }
end
where
('npm_package_name') must specify an NPM package, such as 'bower' or 'statsd'
be_installed is a valid matcher for this resourceYou can also specify additional options:
describe npm('npm_package_name', path: '/path/to/project') do
it { should be_installed }
end
The path specifies a folder, that contains a node_modules subdirectory. It emulates running npm inside the specified folder. This way you can inspect local NPM installations as well as global ones.
The following examples show how to use this Chef InSpec audit resource.
describe npm('bower') do
it { should be_installed }
its('version') { should eq '1.4.1' }
end
describe npm('statsd') do
it { should_not be_installed }
end
For a full list of available matchers, please visit our matchers page.
The be_installed matcher tests if the named Gem package and package version (if specified) is installed:
it { should be_installed }
The version matcher tests if the named package version is on the system:
its('version') { should eq '1.2.3' }
© Chef Software, Inc.
Licensed under the Creative Commons Attribution 3.0 Unported License.
The Chef™ Mark and Chef Logo are either registered trademarks/service marks or trademarks/servicemarks of Chef, in the United States and other countries and are used with Chef Inc's permission.
We are not affiliated with, endorsed or sponsored by Chef Inc.
https://docs.chef.io/inspec/resources/npm/