We can use help in a bunch of areas and any help is appreciated. Our GitHub issues serve as a place for any discussion, whether it's bug reports, questions, project direction etc. As the project grows this policy may change.
Our Discord server is open for help and more adhoc discussion. All activity on the Discord is still moderated and will be strictly enforced under the project's Code of Conduct.
You have to sign the contributor license agreement (CLA) before your pull request can be reviewed.
Getting started with developing jLoads is as easy as three commands. You will need Node v12 or above.
git clone https://github.com/jloads/jloads
cd jloads
./scripts/jloads --help
No dependency installation step is required as we check in our node_modules
folder that contains only a copy of TypeScript and some definitions.
Refer to Getting Started for more usage documentation.
You can run the test suite with the following command:
./scripts/jloads test
This will run all tests inside of any __rtests__
directories.
Run TypeScript with code emitting disabled to perform a full typecheck outside the editor.
node_modules/.bin/tsc --noEmit
You may run into errors when trying to run the jloads commands on Windows
This is because the command uses shebangs to automatically invoke itself as a Node script. You can fix this in a couple of ways:
- Use a terminal that supports shebangs on Windows such a Git Bash
- Prefix any commands with
node
eg.node scripts/jloads