https://github.com/pix303/users-training-app
Training project for testing NextJs and Remix with a minimal rest api
https://github.com/pix303/users-training-app
comparison evaluation go nextjs remix rest-api training
Last synced: 2 months ago
JSON representation
Training project for testing NextJs and Remix with a minimal rest api
- Host: GitHub
- URL: https://github.com/pix303/users-training-app
- Owner: pix303
- Created: 2021-11-18T16:30:15.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-12-02T10:04:13.000Z (over 3 years ago)
- Last Synced: 2025-04-08T00:42:38.822Z (about 1 year ago)
- Topics: comparison, evaluation, go, nextjs, remix, rest-api, training
- Language: CSS
- Homepage:
- Size: 211 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# users-training-app
Training projects to evaluate Nextjs (ver 12 and 13) and Remix
## server
Go minimal rest api for serving users data
- `GET: /users`: list all users (about 10)
- `GET: /users/$id`: get single user by id
- `GET: /users/search?name=something`: filter users by name
- `POST: /user`: add or update user
- `DELETE: /user`: not yet implemented
TODO:
- minimal model in users list endpoint
- cors by lib
## User app
Apps implemented with different framework for presenting users with filter by name, user detail and form to update or insert user
## nextjs-user-app
App implemented with **Nextjs 12**
TODO:
- complete user detail view
- add/update view
## nextjs13-user-app
App implemented with **Nextjs 13**
## remix-user-app
App implemented with **Remix**