Project description with clear goal.
- Figma Mockup: https://figma.com
- Figma Prototype: https://figma.com
- Whimsical Flowchart: https://whimsical.com
- First feature
- Second feature
- Third feature
- Fourth feature
- Fifth feature
Name | Role | GitHub URL |
---|---|---|
Albatross | Lead, Frontend | @albatross |
Bandicoot | Design, Docs | @bandicoot |
Chipmunk | Frontend, Design | @chipmunk |
Dolphin | Frontend, Backend | @dolphin |
- HTML
- CSS
- Tailwind CSS
- JavaScript
- TypeScript
- Node.js & npm
- React
- Vite v3
- React Router v6
- Next.js v12
- next/router
- next/image
- Remix v1.7.2
- Remix Router
- Vite v3
- Data Fetching
- REST API:
axios
/swr
- GraphQL:
urql
/graphql-request
- REST API:
- UI Components
- Ariakit
- Headless UI
- Radix UI
- Misc
- Prettier
- ESLint
concurrently
Install dependencies:
npm install
Run server in development mode:
npm run dev
Build for production:
npm run build
Start in production mode:
npm start
Details on deployment using Vercel or Netlify here.
{
"id": "abc123",
"title": "Resource name",
"description": "Some details about\nthe resource",
"isAvailable": true,
"quantity": 100,
"createdAt": "",
"updatedAt": ""
}
type Resource {
id: String!
title: String!
description: String
isAvailable: Boolean!
quantity: Number!
tags: [Tag!]!
createdAt: String!
updatedAt: String!
}
{
"id": "abc123",
"name": "Tag name"
}
type Tag {
id: String!
name: String!
}
{
"id": "abc123",
"name": "First Last",
"email": "[email protected]"
}
type User {
id: String!
name: String!
email: String!
}
Base URL: https://api.example.com
Endpoint | Method | Description |
---|---|---|
/resources |
GET |
Get all resources |
/resources/:id |
GET |
Get one resource by id |
/resources |
POST |
Create new resource |
/resources/:id |
PUT |
Update one resource by id |
/resources/:id |
PATCH |
Patch one resource by id |
/resources |
DELETE |
Remove all resources |
/resources/:id |
DELETE |
Remove one resource by id |
Endpoint | Method | Description |
---|---|---|
/auth/signup |
POST |
Sign up new account |
/auth/signin |
POST |
Sign in to existing account |
/auth/signout |
POST |
Sign out authenticated account |
Base URL: https://api.example.com/graphql
query getAllResources {
resources {
id
title
}
}
query getOneResourceById {
resource(id: "abc123") {
id
title
}
}
mutation createNewResource {
createResource(
title: "New resource name"
description: "More details about\nthe new resource."
) {
id
title
}
}