Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

API Base URLs

API ENDPOINTS

  • GET api/tutorials/ get all Tutorials
  • GET api/tutorials/:id/ get Tutorial by id
  • POST api/tutorials/ add new Tutorial
  • PUT api/tutorials/:id/ update Tutorial by id
  • DELETE api/tutorials/:id/ remove Tutorial by id
  • DELETE api/tutorials/ remove all Tutorials

How To Use Repo

To clone and run this application, you'll need Git

// Clone this repository
$ git clone https://github.com/your-user-name/your-project-name

// Install dependencies
    $ cd client
    $ npm or yarn install
// Run the app
    $ npm or yarn start