Skip to content

ErikKhan/WebAPI-React

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Web API Core using React to Fetch data.

Tech Used

  1. .NET web API (Swagger)
  2. All CRUD operations.
    HTTP Methods:
    CRUD
    a. GET- Read
    b. POST - Create
    c. PUT- Update - Updates the whole records
    d. DELETE - Delete
    e. Patch - Update - can update parts of record
  3. Annotations:
    a. GET: [HttpGet]
    b. POST: [HttpPost]
    c. PUT: [HttPut]
    d. DELETE: [HttpDelete]
  4. app.UseCors(builder => builder .AllowAnyOrigin() .AllowAnyMethod() .AllowAnyHeader()); For Fetching
  5. React application to Fetch all the Data.

server: API <------------------------> Client: React

API: webapi React Frontend:
react

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages