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 repository
npm i // or npm install to get all packages and dependencies of NPM
npm init // to get package.json
npm install express // check wether you have installed npm packages or just install express
npm install -g heroku // install git heroku for deployment and get the server functionality
heroku create app-notes-taker // name of the app in heroku
npm install shortid // install shortid from npm package for generating unique ID
Defining 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 .