https://github.com/xanthous-tech/nestjs-remix-template
A Template that combines NestJS with Remix in a single code base.
https://github.com/xanthous-tech/nestjs-remix-template
Last synced: about 1 year ago
JSON representation
A Template that combines NestJS with Remix in a single code base.
- Host: GitHub
- URL: https://github.com/xanthous-tech/nestjs-remix-template
- Owner: xanthous-tech
- Created: 2024-01-28T04:43:24.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-22T06:14:40.000Z (over 2 years ago)
- Last Synced: 2025-04-19T23:32:00.047Z (about 1 year ago)
- Language: TypeScript
- Size: 369 KB
- Stars: 7
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## NestJS + Remix Template
This is a template that integrates [Remix](https://remix.run) into a [NestJS](https://nestjs.com) application.
On the NestJS side, we stripped out the default build tools, formatter, and went for the following:
- [tsup](https://tsup.egoist.dev/) for building
- [biome](https://biomejs.dev) for formatting / linting
We also stripped out the test code for simplicity.
On the Remix side, we added the following toolchain / UI libraries:
- [TailwindCSS](https://tailwindcss.com)
- [Shadcn UI](https://ui.shadcn.com)
Between these two, we have injected `AppService` into the Remix app load context, so you can use it in the loaders and actions. Feel free to use this as a starting point for your own projects.
We also added these functional pieces to speed up development of various projects:
- [x] Drizzle ORM
- [x] Lucia Auth
- [x] BullMQ (with Bull Board)