A Great application that can be used to write and save notes for daily life.
It works with Express.js, you can add, see and delete all notes you want to plan and schedule your daily life.
Application developed using ES6 Syntax and Express.js.
You need some packages to run this application,
git clone git@github.com:rogers0404/11-note-taker.git //clone the repositorynpm i // or npm install to get all packages and dependencies of NPMnpm init // to get package.jsonnpm install express // check wether you have installed npm packages or just install expressnpm install -g heroku // install git heroku for deployment and get the server functionalityheroku create app-notes-taker // name of the app in herokunpm install shortid // install shortid from npm package for generating unique IDDefining Express in the application:
const express = require('express');
The starting command-line is:
npm start // to run the server
Examples of routes:
router.get('/', (req, res) => {
` res.sendFile(path.join(__dirname, ‘../public/index.html’));
});`
// API GET
router.get("/api/notes", (req, res) => {
` res.json(notes);
});`
Note Taker with Express.js is licensed under the
None
Express.js and shortid Dependency is licensed under the
MIT
None
If you have any questions about the application, you can check the documentation on my GitHub profile https://github.com/rogers0404.
for more information you can have a question via email rogers.ramirez2008@gmail.com .




