On the top right corner of this page, click the Fork button.
Clone down the forked repo (from your GitHub). Since you don't want to name your project "flashcards-starter", you can use an optional argument when you run git clone
(you replace the [...]
with the terminal command arguments):
git clone [remote-address] [what you want to name the repo]
Once you have cloned the repo, change into the directory and install the library dependencies. Run:
npm install
To verify that it is setup correctly, run npm test
in your terminal. You should have 5 pending tests in your Card
test file that show up.
Running node index.js
from the root of your project should result in the following message being displayed in your terminal:
Node server running on port 3000
Note that you will not need to you run your server until you are instantiating your Game
class in Iteration 3. Prior to that, you should be using TDD to drive your code. You should check the functionality of your application by running your tests via npm test
.
Create all of your feature code files in the src
directory.
We will be using the module.exports
and require
syntax to share code across files.
Once you are working through Iteration 3, you will want to start your server to test your functionality. In the terminal, run:
node index.js
When the game is functioning appropriately, you will be prompted for each question, have the opportunity to select an answer, and will be given feedback. You will be able to play through the entire deck of cards:
Similar to feature code, your test code needs to be put in a specific place for it to run successfully.
Put all of your test files in the test
directory. As a convention, all test filenames should end with -test.js
. For instance: Round-test.js
.
Run your test suite using the command:
npm test
The test results will output to the terminal.
Run the command in your terminal
to run the linter on your JavaScript code. There will be errors and warnings right from the start in this starter kit - the linter is still running successfully.
Your linter will look at the JavaScript files you have within the src
directory and the test
directory.