UNPKG

1.33 kBMarkdownView Raw
1# Getting Involved
2
3Thanks for your interest in the project, we'd love to have you involved! Check out the sections below to find out more about what to do next...
4
5## Opening an Issue
6
7We always welcome issues, if you've seen something that isn't quite right or you have a suggestion for a new feature, please go ahead and open an issue in this project. Include as much information as you have, it really helps.
8
9## Making a Code Change
10
11We're always open to pull requests, but these should be small and clearly described so that we can understand what you're trying to do. Feel free to open an issue first and get some discussion going.
12
13When you're ready to start coding, fork this repository to your own GitHub account and make your changes in a new branch. Once you're happy, open a pull request and explain what the change is and why you think we should include it in our project.
14
15## Reviewing a Pull Request
16
17To run the code for an open PR, follow these steps:
18
191. `git clone https://github.com/Nexmo/nexmo-node.git`
202. `cd nexmo-node`
213. `git checkout BRANCH_NAME`
224. `npm install`
235. Uncomment the appropriate line in `examples/run-examples.js` for each example you want to run.
246. In the `examples` folder, copy `example.env` to `.env`.
257. Update `.env` with your API key and API secret.
268. `node examples/run-examples.js`