Node.js Core Utilities
CLI tools for Node.js Core collaborators
Usage
First, follow these instructions
to create a personal access token.
Note: You don't need to check any boxes, these tools only require public access(for now).
Then create a file named .ncurc
under your $HOME
directory (~/.ncurc
);
{
"username": "you_github_username"
"token": "token_that_you_created"
}
If you install via npm, that's it.
If you are using it from source, install and link:
git clone git@github.com:joyeecheung/node-core-utils.git
cd node-core-utils
npm install
npm link
get-metadata
This one is inspired by Evan Lucas's node-review
, although it is a CLI implemented with the Github GraphQL API.
TODO