| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [View Raw Code] [Original HTTPS Page] |
Welcome to TheAlgorithms/JavaScript! Before sending your pull requests, make sure that you read the whole guidelines. If you have any doubts about the contributing guide, please feel free to state them clearly in an issue or by joining our Discord community.
We are very happy that you consider implementing algorithms and data structures for others! This repository is referenced and used by learners from around the globe. Being one of our contributors, you agree and confirm that:
New implementations are welcome! For example, new solutions to a problem, different representations of a graph data structure, or algorithm designs with different complexity.
Improving comments and writing proper tests are also highly welcome.
We appreciate any contribution, from fixing grammar mistakes to implementing complex algorithms. Please read this section if you are contributing to your work.
If you submit a pull request that resolves an open issue, please help us to keep our issue list small by adding fixes: #{$ISSUE_NO} to your commit message. GitHub will use this tag to auto-close the issue if your PR is merged.
An Algorithm is one or more functions (or classes) that:
Algorithms should be packaged in a way that would make it easy for readers to put them into larger programs.
Algorithms should:
Algorithms in this repo should not be how-to examples for existing JavaScript packages. Instead, they should perform internal calculations or manipulations to convert input values into different output values. Those calculations or manipulations can use data types, classes, or functions of existing JavaScript packages but each algorithm in this repo should add a unique value.
Examples of best commit messages.
fix: fixed error in XYZ algorithm
feat: re-work the CI workflow
docs: improve the contributing guidelines
test: add self-tests for XYZ algorithm
chore: update readme badgesWe use the ES Module system, which brings an official, standardized module system to JavaScript.
It roughly means you will need to use export and import statements instead of module.exports and require().
Be confident that your code works. When was the last time you committed a code change, your build failed, and half of your app stopped working? Mine was last week. Writing tests for our Algorithms will help us ensure the implementations are airtight even after multiple fixes and code changes.
We use Vitest to run unit tests on our algorithms. It provides a very readable and expressive way to structure your test code.
It is advised that the algorithm file (module) does not contain any "live" code but rather just exports the function(s) needed to execute the algorithm. Your test code can import those function(s), call them with the appropriate parameters and inspect the outcome. Example: RatInAMaze.test.js.
Please refrain from using console in your implementation AND test code.
First, you should install all dependencies using:
npm installYou can (and should!) run all tests locally before committing your changes:
npm testIf you want to save some time and just run a specific test:
# This will run any test file where the filename contains "koch" (no need to specify folder path)
npm test -- kochYou can also start Vitest in "watch" mode:
npm run test-watchThis will run all tests and watch source and test files for changes. When a change is made, the tests will run again.
For consistency and readability, we require that new submissions follow the Prettier Style. Before committing, please format your code automatically using Prettier by running the following command:
npm run styleA few (but not all) of the things to keep in mind:
function sumOfArray(arrayOfNumbers) {
let sum = 0
for (let i = 0; i < arrayOfNumbers.length; i++) {
sum += arrayOfNumbers[i]
}
return sum
}Writer @itsvinayak and contributors, May 2020.
| Back | FazBrowse Home | New Git URL |