Metadata-Version: 1.1
Name: rodacom.buildout.npm
Version: 0.5
Summary: A buildout recipe to install NodeJS packages locally using npm
Home-page: https://github.com/rodacom/rodacom.buildout.npm
Author: Michael Lemaire
Author-email: m.lemaire@rodacom.fr
License: Apache Software License
Description: rodacom.buildout.npm
        ====================
        
        A `zc.buildout <http://pypi.python.org/pypi/zc.buildout>`_ recipe to install NodeJS packages locally using npm.
        
        This recipe will install wanted packages in the local `node_modules` directory, and create a link to binaries
        in the buildout `bin` directory.
        
        Options
        ~~~~~~~
        
        :packages: **required**, a list of package names to install (can specify a version with the syntax `name@version`).
        :node_path: absolute path to the `node` executable, by default the `bin/node` in buildout directory.
        :npm_path: absolute path to the `npm` executable, by default the `bin/npm` in buildout directory.
        
        Examples
        ~~~~~~~~
        
        Using a locally compiled NodeJS::
        
            [nodejs]
            recipe = zc.recipe.cmmi
            url = http://nodejs.org/dist/v0.10.21/node-v0.10.21.tar.gz
            bin_node = ${buildout:parts-directory}/nodejs/bin/node
            bin_npm = ${buildout:parts-directory}/nodejs/bin/npm
        
            [coffee]
            recipe = rodacom.buildout.npm
            node_path = ${nodejs:bin_node}
            npm_path = ${nodejs:bin_npm}
            packages = coffee-script@1.6.3
        
        Known bugs
        ~~~~~~~~~~
        
        * The links generated in the 'bin' directory are not removed on uninstall.
        
        
Keywords: buildout zc.buildout recipe nodejs npm
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Buildout
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
