Navigate inside the root directory and run command npm install
then npm start
to start the server.
The default port is 3000 so the server will start on http://localhost:3000
camelCase naming - e.g. likeThis
-
Variables: Start with a lower case for variable names.
- e.g. int thisIsAVariable
-
Functions: Start with an upper case for function names.
- e.g. int ThisIsAFunction();
- Files: camelCase with a starting lower case for file names.
- e.g. homePage.html; style.css; canvas.js; playerModel.jpg;
- README still in caps because it's special <3