Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/heroku/heroku-buildpack-nodejs
Heroku's buildpack for Node.js applications.
https://github.com/heroku/heroku-buildpack-nodejs
buildpack heroku heroku-languages nodejs
Last synced: 25 days ago
JSON representation
Heroku's buildpack for Node.js applications.
- Host: GitHub
- URL: https://github.com/heroku/heroku-buildpack-nodejs
- Owner: heroku
- License: mit
- Created: 2011-05-18T17:00:45.000Z (over 13 years ago)
- Default Branch: main
- Last Pushed: 2024-05-22T04:04:27.000Z (6 months ago)
- Last Synced: 2024-05-22T11:42:54.758Z (6 months ago)
- Topics: buildpack, heroku, heroku-languages, nodejs
- Language: Shell
- Homepage: https://devcenter.heroku.com/articles/buildpacks
- Size: 122 MB
- Stars: 1,295
- Watchers: 125
- Forks: 2,620
- Open Issues: 35
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
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.
[![CI](https://github.com/heroku/heroku-buildpack-nodejs/actions/workflows/ci.yml/badge.svg)](https://github.com/heroku/heroku-buildpack-nodejs/actions/workflows/ci.yml)
## 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)
- [Troubleshooting Node.js Deploys](https://devcenter.heroku.com/articles/troubleshooting-node-deploys)For more general information about buildpacks on Heroku:
- [Buildpacks](https://devcenter.heroku.com/articles/buildpacks)
- [Buildpack API](https://devcenter.heroku.com/articles/buildpack-api)## Using the Heroku Node.js buildpack
It's suggested that you use the latest version of the release buildpack. You can set it using the `heroku-cli`.
```sh
heroku buildpacks:set heroku/nodejs
```Your builds will always used the latest published release of the buildpack.
If you need to use the git url, you can use the `latest` tag to make sure you always have the latest release. **The `main` branch will always have the latest buildpack updates, but it does not correspond with a numbered release.**
```sh
heroku buildpacks:set https://github.com/heroku/heroku-buildpack-nodejs#latest -a my-app
```## Locking to a buildpack version
Even though it's suggested to use the latest release, you may want to lock dependencies - including buildpacks - to a specific version.
First, find the version you want from
[the list of buildpack versions](https://github.com/heroku/heroku-buildpack-nodejs/tags).
Then, specify that version with `buildpacks:set`:```
heroku buildpacks:set https://github.com/heroku/heroku-buildpack-nodejs#v176 -a my-app
```### 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/)
- [GitHub issues](https://github.com/heroku/heroku-buildpack-nodejs/issues)## Development
### Prerequisites
For local development, you may need the following tools:
- [Docker](https://hub.docker.com/search?type=edition&offering=community)
- [Go 1.14](https://golang.org/doc/install#install)
- [upx](https://upx.github.io/)### Deploying an app with a fork or branch
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
```### Downloading Plugins
In order to download the latest plugins that have been released, run the following:
```
plugin/download.sh v$VERSION
```Make sure the version is in the format `v#`, ie. `v7`.
## Tests
The buildpack tests use [Docker](https://www.docker.com/) to simulate
Heroku's stacks.To run the test suite:
```
make test
```Or to just test a specific stack:
```
make heroku-20-build
make heroku-22-build
```The tests are run via the vendored
[shunit2](https://github.com/kward/shunit2)
test framework.### Debugging
To display the logged build outputs to assist with debugging, use the "echo" and "cat" commands. For example:
```sh
test() {
local log_file varvar="testtest"
log_file=$(mktemp)
echo "this is the log file" > "$log_file"
echo "test log file" >> "$log_file"# use `echo` and `cat` for printing variables and reading files respectively
echo $var
cat $log_file# some cases when debugging is necessary
assertEquals "$var" "testtest"
assertFileContains "test log file" "$log_file"
}
```Running the test above would produce:
```log
testtest
this is the log file
test log file
```The test output writes to `$STD_OUT`, so you can use `cat $STD_OUT` to read output.