Skip to content

jnmio/angular-node-mysql-crud

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

Angular Node MySQL CRUD application

Connect MVC Node Express API to Angular application for CRUD operations

  1. Setup MySQL, Node, and Angular
  2. Create backend/config/config.json and change the password to your MySQL password.
{
  "host": "localhost",
  "user": "root",
  "database": "groceries",
  "password": "<password>"
}

Note: For development purposes the host is localhost but this will need to be updated if you decide to deploy the application. By Default, MySQL gives the user 'root' with all privileges. You can simply change this to another user if desired. In this application we named our database 'groceries', however, if you went with a different name this will need to be changed.

  1. cd backend
  2. $ npm start
  3. cd ../frontend
  4. npm start

About

Connect MVC Node Express API to Angular application for CRUD operations

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • TypeScript 62.0%
  • JavaScript 27.5%
  • HTML 9.5%
  • SCSS 1.0%