├── .gitignore ├── README.md ├── db.json ├── index.js ├── package.json ├── src ├── commands.js ├── db.js ├── notes.js ├── server.js ├── template.html └── utils.js └── tests └── notes.test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | db.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/intro-node-v3/HEAD/README.md -------------------------------------------------------------------------------- /db.json: -------------------------------------------------------------------------------- 1 | { 2 | "notes": [] 3 | } 4 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | import './src/commands.js' -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/intro-node-v3/HEAD/package.json -------------------------------------------------------------------------------- /src/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/intro-node-v3/HEAD/src/commands.js -------------------------------------------------------------------------------- /src/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/intro-node-v3/HEAD/src/db.js -------------------------------------------------------------------------------- /src/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/intro-node-v3/HEAD/src/notes.js -------------------------------------------------------------------------------- /src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/intro-node-v3/HEAD/src/server.js -------------------------------------------------------------------------------- /src/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/intro-node-v3/HEAD/src/template.html -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/intro-node-v3/HEAD/src/utils.js -------------------------------------------------------------------------------- /tests/notes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/intro-node-v3/HEAD/tests/notes.test.js --------------------------------------------------------------------------------