datomnurdin / NodeCRUD

REST API with Node.js

Home Page:https://nodejs-restful-api-my.herokuapp.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NodeCRUD

RESTful API using Node.JS

Prerequisites

Node.js
MySQL

Installing

npm install

Create a new database in MySQL and run this SQL query to build a new table.

CREATE TABLE `users` (
`userId` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(250) NOT NULL,
`email` varchar(250) NOT NULL,
`phone_number` varchar(250) NOT NULL,
`skillsets` varchar(500) NOT NULL,
`hobby` varchar(500) NOT NULL,
`dateCreated` datetime NOT NULL,
`dateUpdated` datetime NOT NULL,
PRIMARY KEY (`userId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

Demo: https://www.youtube.com/watch?v=nrIFVA5bygk

Built With

  • Node.js - Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Authors

License

This project is licensed under the MIT License - see the LICENSE.md file for details

About

REST API with Node.js

https://nodejs-restful-api-my.herokuapp.com/


Languages

Language:JavaScript 100.0%