Skip to content

This is a minimal Remix stack to serve as a starting point for demos and debugging.

Notifications You must be signed in to change notification settings

colbywhite/acoustic-stack

Repository files navigation

Remix Acoustic Stack

The Remix Acoustic Stack

This is a minimal Remix stack to serve as a starting point for demos and debugging. If you need to reproduce a bug in Remix, this stack is a good starting point to do so since it has very little outside of Remix. It's also a good tool if you're trying to demo something Remix-specific.

Learn more about Remix Stacks.

yarn create remix --template colbywhite/acoustic-stack

What's in the stack

That's it.

Tailwind and Vitest aren't Remix-specific concepts, but if you quickly need to spin up a demo, a basic styling tool and a test runner will help. And a linter/formatter keeps the code clean for others to grok.

If you need more you can fork this and make it your own.

Development

yarn dev

This starts your app in development mode, rebuilding assets on file changes.

Testing

Vitest

For lower level tests of utilities and individual components, we use vitest. We have DOM-specific assertion helpers via @testing-library/jest-dom.

Type Checking

This project uses TypeScript. It's recommended to get TypeScript set up for your editor to get a really great in-editor experience with type checking and auto-complete. To run type checking across the whole project, run yarn typecheck.

Linting

This project uses ESLint for linting. That is configured in .eslintrc.js.

Formatting

We use Prettier for auto-formatting in this project. It's recommended to install an editor plugin (like the VSCode Prettier plugin) to get auto-formatting on save. There's also a npm run format script you can run to format all files in the project.

About

This is a minimal Remix stack to serve as a starting point for demos and debugging.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published