This template provides a minimal setup to start working on a client for Primodium (via the Primodium Core package).
Technologies used: primodiumxyz/core
, primodiumxyz/reactive-tables
, shadcn/ui
, react+vite
npm create primodium@latest --template react-client
cd primodium-project #your project name
npm install
npm run dev
The Core package exposes a set of tools and utilities you can use to interact with Primodium easily. For more details visit the Primodium Core repository.
Use this repository as a template for creating your own bots and dashboards.
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
- Configure the top-level
parserOptions
property like this:
export default {
// other rules...
parserOptions: {
ecmaVersion: "latest",
sourceType: "module",
project: ["./tsconfig.json", "./tsconfig.node.json"],
tsconfigRootDir: __dirname,
},
};
- Replace
plugin:@typescript-eslint/recommended
toplugin:@typescript-eslint/recommended-type-checked
orplugin:@typescript-eslint/strict-type-checked
- Optionally add
plugin:@typescript-eslint/stylistic-type-checked
- Install eslint-plugin-react and add
plugin:react/recommended
&plugin:react/jsx-runtime
to theextends
list