It has
- Example REST and GraphQL modules, DB using TypeORM as seen on https://docs.nestjs.com/
- Next.js integration for React on the frontend (howto article)
- Typed queries & results with GraphQL out of the box (howto article)
- Authentication via Passport.js including Social providers (howto article), AWS Cognito (howto article), and JWT strategy for REST and GraphQL
- Docker setup
- Typescript, ESLint
- CI via GitHub Actions
- Running tasks (e.g. DB seeding) via nestjs-console
- Unit and integration testing via Jest
- Heroku deployment setup
- Google Analytics 4
The deployments below are probably in sleep mode and will take a minute to come online when you open them.
cp .env.example .env
docker-compose up
docker-compose exec web yarn lint
docker-compose exec web yarn test
docker-compose exec web yarn test:request
docker-compose exec web yarn build
docker run -it -v $PWD:/e2e -w /e2e --network="host" --entrypoint=cypress cypress/included:12.2.0 run
REST endpoint via Nest
JWT-protected REST endpoint via Nest
GraphQL playground (query WhoAmI
is JWT-protected)
query Public {
things {
id
name
}
users {
id
provider
}
}
# Add Header: { "Authorization": "Bearer <token>" }
query Private {
whoAmI {
id,
provider,
providerId,
username,
name
}
orders {
id
alias
thing {
name
}
}
}
mutation createOrder {
createOrder(alias: "myname", thingName: "this is a thing you can order") {
id
alias
}
}
Cognito auth (redirects to hosted Cognito UI)
Google auth
Next.js page
JWT-protected Next.js page
Nest CLI:
docker-compose exec web yarn nest -- --help
TypeORM CLI:
docker-compose exec web yarn typeorm -- --help