# heroku-buildpack-nodejs **Repository Path**: wppurking/heroku-buildpack-nodejs ## Basic Information - **Project Name**: heroku-buildpack-nodejs - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-06-12 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Heroku Buildpack for Node.js ![nodejs](https://cloud.githubusercontent.com/assets/51578/13712672/efdf2a40-e792-11e5-82ef-492478cbc0dc.png) This is the official [Heroku buildpack](http://devcenter.heroku.com/articles/buildpacks) for Node.js apps. [![Build Status](https://travis-ci.org/heroku/heroku-buildpack-nodejs.svg)](https://travis-ci.org/heroku/heroku-buildpack-nodejs) ## Documentation For more information about using this Node.js buildpack on Heroku, see these Dev Center articles: - [Heroku Node.js Support](https://devcenter.heroku.com/articles/nodejs-support) - [Getting Started with Node.js on Heroku](https://devcenter.heroku.com/articles/nodejs) For more general information about buildpacks on Heroku: - [Buildpacks](https://devcenter.heroku.com/articles/buildpacks) - [Buildpack API](https://devcenter.heroku.com/articles/buildpack-api) ## Locking to a buildpack version In production, you frequently want to lock all of your dependencies - including buildpacks - to a specific version. That way, you can regularly update and test them, upgrading with confidence. First, find the version you want from [the list of buildpack versions](https://github.com/heroku/heroku-buildpack-nodejs/releases). Then, specify that version with `buildpacks:set`: ``` heroku buildpacks:set https://github.com/heroku/heroku-buildpack-nodejs#v83 -a my-app ``` If you have trouble upgrading to the latest version of the buildpack, please open a support ticket at [help.heroku.com](https://help.heroku.com/) so we can assist. ### Chain Node with multiple buildpacks This buildpack automatically exports node, npm, and any node_modules binaries into the `$PATH` for easy use in subsequent buildpacks. ## Feedback Having trouble? Dig it? Feature request? - [help.heroku.com](https://help.heroku.com/) - [@jeremymorrell](http://twitter.com/jeremymorrell) - [GitHub issues](https://github.com/heroku/heroku-buildpack-nodejs/issues) ## Hacking To make changes to this buildpack, fork it on GitHub. Push up changes to your fork, then create a new Heroku app to test it, or configure an existing app to use your buildpack: ``` # Create a new Heroku app that uses your buildpack heroku create --buildpack # Configure an existing Heroku app to use your buildpack heroku buildpacks:set # You can also use a git branch! heroku buildpacks:set #your-branch ``` ## Tests The buildpack tests use [Docker](https://www.docker.com/) to simulate Heroku's Cedar-14 and Heroku-16 containers. To run the test suite: ``` make test ``` Or to just test in cedar or cedar-14: ``` make test-cedar-14 make test-heroku-16 ``` The tests are run via the vendored [shunit2](https://github.com/kward/shunit2) test framework.