{"id":13799971,"url":"https://github.com/cloudfoundry/nodejs-buildpack","last_synced_at":"2026-01-12T02:33:47.603Z","repository":{"id":7402776,"uuid":"8733172","full_name":"cloudfoundry/nodejs-buildpack","owner":"cloudfoundry","description":"Cloud Foundry buildpack for Node.js","archived":false,"fork":false,"pushed_at":"2025-04-23T10:17:05.000Z","size":104566,"stargazers_count":174,"open_issues_count":26,"forks_count":386,"subscribers_count":97,"default_branch":"master","last_synced_at":"2025-04-23T11:27:27.659Z","etag":null,"topics":["v2b"],"latest_commit_sha":null,"homepage":"http://docs.cloudfoundry.org/buildpacks/","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"zby22013/csu_library","license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cloudfoundry.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2013-03-12T16:57:19.000Z","updated_at":"2025-04-02T05:29:51.000Z","dependencies_parsed_at":"2023-10-12T01:56:52.654Z","dependency_job_id":"2f91a578-7d3b-4b9c-a6a8-6aa11f359269","html_url":"https://github.com/cloudfoundry/nodejs-buildpack","commit_stats":{"total_commits":2423,"total_committers":160,"mean_commits":15.14375,"dds":0.5798596780850186,"last_synced_commit":"9fc249ce2b232aef9e0b6ca3bc584966dd327151"},"previous_names":["cloudfoundry/heroku-buildpack-nodejs"],"tags_count":224,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudfoundry%2Fnodejs-buildpack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudfoundry%2Fnodejs-buildpack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudfoundry%2Fnodejs-buildpack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudfoundry%2Fnodejs-buildpack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudfoundry","download_url":"https://codeload.github.com/cloudfoundry/nodejs-buildpack/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254301431,"owners_count":22047904,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["v2b"],"created_at":"2024-08-04T00:01:07.781Z","updated_at":"2026-01-12T02:33:47.597Z","avatar_url":"https://github.com/cloudfoundry.png","language":"Go","funding_links":[],"categories":["Platform"],"sub_categories":[],"readme":"# Cloud Foundry Node.js Buildpack\n\n[![CF Slack](https://www.google.com/s2/favicons?domain=www.slack.com) Join us on Slack](https://cloudfoundry.slack.com/messages/buildpacks/)\n\nA Cloud Foundry [buildpack](http://docs.cloudfoundry.org/buildpacks/) for Node based apps.\n\n### Buildpack User Documentation\n\nOfficial buildpack documentation can be found at [node buildpack docs](http://docs.cloudfoundry.org/buildpacks/node/index.html).\n\n### Building the Buildpack \n\nTo build this buildpack, run the following commands from the buildpack's directory:\n\n1. Source the .envrc file in the buildpack directory.\n\n   ```bash\n   source .envrc\n   ```\n   To simplify the process in the future, install [direnv](https://direnv.net/) which will automatically source .envrc when you change directories.\n\n1. Install buildpack-packager\n\n    ```bash\n     go install github.com/cloudfoundry/libbuildpack/packager/buildpack-packager@master\n    ```\n\n1. Build the buildpack\n\n    ```bash\n    buildpack-packager build -stack [STACK] [ --cached=(true|false) ]\n    ```\n\n1. Use in Cloud Foundry\n\n   Upload the buildpack to your Cloud Foundry and optionally specify it by name\n\n    ```bash\n    cf create-buildpack [BUILDPACK_NAME] [BUILDPACK_ZIP_FILE_PATH] 1\n    cf push my_app [-b BUILDPACK_NAME]\n    ```\n\n### Testing\n\nBuildpacks use the [Cutlass](https://github.com/cloudfoundry/libbuildpack/tree/master/cutlass) framework for running integration tests.\n\nTo test this buildpack, run the following command from the buildpack's directory:\n\n1. Source the .envrc file in the buildpack directory.\n\n   ```bash\n   source .envrc\n   ```\n   To simplify the process in the future, install [direnv](https://direnv.net/) which will automatically source .envrc when you change directories.\n\n1. Run unit tests\n\n    ```bash\n    ./scripts/unit.sh\n    ```\n\n1. Run integration tests\n\n   Buildpacks use the [Cutlass](https://github.com/cloudfoundry/libbuildpack/tree/master/cutlass) framework for running integration tests against Cloud Foundry. Before running the integration tests, you need to login to your Cloud Foundry using the [cf cli](https://github.com/cloudfoundry/cli):\n\n    ```bash\n    cf login -a https://api.your-cf.com -u name@example.com -p pa55woRD\n    ```\n\n   Note that your user requires permissions to run `cf create-buildpack` and `cf update-buildpack`. To run the integration tests, run the following command from the buildpack's directory:\n\n    ```bash\n    ./scripts/integration.sh\n    ```\n\n### Contributing\n\nFind our guidelines [here](./CONTRIBUTING.md).\n\n### Help and Support\n\nJoin the #buildpacks channel in our [Slack community](http://slack.cloudfoundry.org/).\n\n### Reporting Issues\n\nOpen an issue on this project.\n\n### Active Development\n\nThe project backlog is on [Pivotal Tracker](https://www.pivotaltracker.com/projects/1042066).\n\n### Acknowledgements\n\nInspired by the [Heroku buildpack](https://github.com/heroku/heroku-buildpack-nodejs).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudfoundry%2Fnodejs-buildpack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcloudfoundry%2Fnodejs-buildpack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudfoundry%2Fnodejs-buildpack/lists"}