This website is used to create and employee into a fictional database.
This project is built using React, Tailwind, Typescript, Vite and finally the brand-new Bun js runtime (no worries, it's still compatible with the Node.js runtime).
I consider you already have Bun installed on your machine. If not, please follow the installation guide.
Install the dependencies:
bun install
Then run the development server:
bun run dev
If you don't want to use Bun, you can still use the classic Node.js way.
Install the dependencies:
npm install
This project was built using Bun, so you need first to change the dev
script in the package.json
file:
"scripts": {
"dev": "vite",
}
Then run the development server:
npm run dev