This is a buildpack for Node.js apps, powered by npm.
This is our default buildpack for Node.js applications. In case you want to introduce some changes, fork our buildpack, apply changes and test it via custom buildpack feature:
$ cctrlapp APP_NAME create custom --buildpack https://github.com/cloudControl/buildpack-nodejs.gitThe buildpack will use npm to install your dependencies, vendoring a copy of the Node.js runtime into your web container.
You can specify the versions of Node.js and npm your application requires using package.json
{
"name": "myapp",
"version": "0.0.1",
"engines": {
"node": "~0.10.13",
"npm": "~1.3.2"
}
}To list the available versions of Node.js and npm, see these manifests: