js-exercises-boilerplate
v1.0.0
Published
## features
Downloads
2
Readme
A boilerplate to build JS exercises
features
- tests with jest
- linting with eslint (airbnb styleguide)
- prettier
- ES6
how to create your exercices
Duplicate this repository
Don't fork this repository.
- Download it as a ZIP Archive with the big green button!
- Create a new repo from its content
OR duplicate it with CLI
- Create a new repository
https://github.com/WildCodeSchool/new-exercises
- Duplicate this repository
git clone --bare [email protected]:WildCodeSchool/js-exercises-boilerplate.git
cd js-exercises-boilerplate.git
git push --mirror [email protected]:WildCodeSchool/new-exercises
Create your exercises
- Write your tests in
index.test.js
- Write functions that fails tests in
index.js
- Comments each function with instructions to the students
- Replace
README.md
with this :
# YOUR TOPIC exercises
## Topic description
Describe these exercises topic
## How to complete
1. clone this repository
2. install with `npm install`
3. read instructions in `index.js`
4. run tests with `npm run test`
5. edit `index.js` to pass the tests
6. repeat steps 3 to 6 until every tests pass successfuly