beringar / nadia

node testing and code quality

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Node.js: Testing and Code Quality

(Nadia’s Garden Restaurant)

This is a Node.js and Express website that accepts and lists restaurant reservations. Improve it with the lynda.com course, "Node.js: Testing and Code Quality" by Jon Peck.

The backend contains intentional mistakes, like weak validation on email addresses. Inconsistencies in coding style are also intentional.

Getting Started

npm install
npm start

The server runs on port 3000.

There are three routes:

The server persists using a SQLite3 database named database.sqlite in the site root.

Development

This project uses EditorConfig to standardize text editor configuration. Visit https://editorconfig.com for details.

This project uses ESLint to detect suspicious code in Javascript files. Visit https://eslint.org for details.

Testing

This project uses Jest for testing. Visit https://jestjs.io for details.

To execute tests: npm test

Debugging

This project uses https://www.npmjs.com/package/debug for development logging. To start nodemon and enable logging:

npm run debug

FAQ

  • Q: Why didn't you store the time submitted?
    • A: I wanted to reduce the number of fields and simplify testing.
  • Q: Wouldn't it be easier if the form submitted a datetime string instead of building and parsing one?
    • A: Yes, it would, but the form logic is simpler. Either way, someone has to do the work.
  • Q: Why did you mix a callback and a Promise in lib/reservations.js?
    • A: Joi doesn't support Promises, but it does support callbacks. I wanted to show how to test both kinds of asynchronous code.
  • Q: How'd you handle cross-platform support?
    • A: Avoided relative directories, used cross-env to transform environmental variables.

Credits

This is an adaptation of a WordPress site hosted at http://587672.youcanlearnit.net/

The conversion:

  • Archive original with wget
  • Strip out unrelated functionality
  • Reorganize JavaScript and Stylesheets into logical directories
  • Converted HTML into Jade / Pug templates using http://html2jade.org/

The front end should be mostly unchanged from the original.

About

node testing and code quality


Languages

Language:CSS 52.3%Language:Pug 27.8%Language:JavaScript 19.9%