├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md └── README.md /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Thank you for reporting an issue. This repository has been archived. 2 | 3 | If you require general support please file an issue on our help repo: 4 | https://github.com/nodejs/help/issues 5 | 6 | If you have an issue with Node.js core, please open the issue in: 7 | https://github.com/nodejs/node/issues 8 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Thank you for your pull request. This repository has been archived. 2 | Please open the PR in https://github.com/nodejs/node/pulls 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | This repository is an archive of Node.js before the move to [nodejs/node](https://github.com/nodejs/node). 3 | 4 | It still contains issues and pull requests that are relevant to Node versions v0.10 and v0.12, and that were opened before the move to [nodejs/node](https://github.com/nodejs/node). 5 | New issues and pull requests, for all branches, should be opened at [nodejs/node](https://github.com/nodejs/node). 6 | New issues and pull requests opened here will automatically be rejected. 7 | 8 | The pre-convergence version of the README is available [here](https://github.com/nodejs/node-v0.x-archive/blob/master/README-pre-convergence.md). --------------------------------------------------------------------------------