Skip to content

Yosee/puppet-nodejs

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

puppet-nodejs

Build Status

This module allows to install Node.js and NPM. This module is published on the Puppet Forge as willdurand/nodejs.

Installation

Get the module by cloning the repository:

git clone git://github.com/willdurand/puppet-nodejs.git modules/nodejs

Or use the Puppet Module Tool:

puppet module install willdurand/nodejs

Requirements

This modules depends on puppetlabs/stdlib. You MUST clone it if you don't use the Puppet Module Tool:

git clone git://github.com/puppetlabs/puppetlabs-stdlib.git modules/stdlib

Usage

Include the nodejs class:

include nodejs

You can specify a Node.js version by specifing it:

class { 'nodejs':
  version => 'v0.10.17',
}

You can install different versions of Node.js thanks to the nodejs::install definition:

nodejs::install { 'v0.10.17':
  version => 'v0.10.17',
}

Shortcuts are provided to easily install the 'latest' or 'stable' release by setting the version parameter to latest or stable. It will automatically look for the last release available.

class { 'nodejs':
  version => 'stable',
}

By default, this module creates symlinks for each Node.js version installed into /usr/local/bin. You can change this behavior by using the target_dir parameter.

Also, this module installs NPM by default. You can set the with_npm parameter to false to not install it.

This module will make install Node.js by default, to use prebuilt versions distributed by Node.js on http://nodejs.org/dist/ set the make_install parameter to false.

class { 'nodejs':
  version => 'v0.10.17',
  make_install => false,
}

or

nodejs::install { 'v0.10.17':
  version => 'v0.10.17',
  make_install => false,
}

NPM Provider

This module adds a new provider: npm. You can use it as usual:

package { 'express':
  provider => npm
}

Running the tests

Install the dependencies using Bundler:

BUNDLE_GEMFILE=.gemfile bundle install

Run the following command:

BUNDLE_GEMFILE=.gemfile bundle exec rake test

License

puppet-nodejs is released under the MIT License. See the bundled LICENSE file for details.

About

Puppet module to manage Node.js and NPM that just works.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 55.8%
  • Puppet 44.2%