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

https://github.com/parassolanki/simple-go-crud-api

Simple go CRUD api with bulit-in net/http module
https://github.com/parassolanki/simple-go-crud-api

Last synced: about 1 year ago
JSON representation

Simple go CRUD api with bulit-in net/http module

Awesome Lists containing this project

README

          

# Simple Go CRUD Api

Simple go CRUD api with bulit-in net/http module.
Keeping all the records in local json file and modifying it.

### Setup

To setup the project you will need to run following command:

```shell
go mod tidy
```

Also, since this project uses [Air](https://github.com/air-verse/air) for hot reloading application while developing you will need to install Air CLI as well.

With go 1.23 or higher:

```shell
go install github.com/air-verse/air@latest
```

### Run Locally

```shell
air
```