An open API service indexing awesome lists of open source software.

https://github.com/jokarz/idea-app

A simple CRUD demo using .Net Core
https://github.com/jokarz/idea-app

asp-net-core react-router reactjs sqlite

Last synced: 2 months ago
JSON representation

A simple CRUD demo using .Net Core

Awesome Lists containing this project

README

          

# Idea CRUD

CRUD demonstration

### Endpoints

Restful end points:
```
Create - /api/idea (HttpPost)
Read - /api/idea (HttpGet), /api/idea/{id} (HttpGet)
Update - /api/idea/{id} (HttpPut)
Delete - /api/idea/{id} (HttpDelete)
```

Frontend paths for each corresponding CRUD:
```
Create - /
Read - /, /idea, /idea/{id}
Update - /idea/{id}
Delete - /idea/{id}
```

### Frontend

Frontend is incorporated using a production build of ReactJs.
Source code of it can be found [here](https://github.com/jokarz/IdeaApp-Client)

## Built With

* [Asp .Net Core](https://docs.microsoft.com/en-us/aspnet/core/)
* [React.js](https://reactjs.org/)
* [Reactstrap](https://reactstrap.github.io/)