This repository contains the Remix Forms source code. Please create issues as you encounter them. We appreciate the contribution!
For documentation about Remix Forms, please visit remix-forms.seasoned.cc.
-
Clone the repo
-
Install and run
$ cd remix-forms
$ pnpm install
$ pnpm run devNote: we had issues running the turborepo dev command on Node 18. We recommend using Node 16 for development.
This will run the website at http://localhost:5173.
This is a monorepo managed with pnpm workspaces and Turborepo. The two main workspaces are:
apps/web– the website and example app.packages/remix-forms– the Remix Forms library.
Workspace scripts are executed from the repo root using pnpm run <script>. The
most common ones are build, dev, lint, tsc and test.
Run pnpm run lint to check code style with Biome (use pnpm run lint-fix
to automatically fix issues) and pnpm run tsc to run the TypeScript compiler.
You need to have the Playwright executables in order to run the tests. Install
them with pnpm exec playwright install (or pnpm run playwright:ci:install).
Then you can run
pnpm run test