You can see my portfolio in production.
Made with ReactJS and Typescript
For Windows user:
- install NodeJS here
For Unix user:
- run
sudo apt-get install nodejs npm
For both OS, run at the root of the project:
$ npm install
If you want to use pnpm instead of npm, you can! You can install pnpm via this link and then run the following command:
$ pnpm install
To open the developer server and the application on the browser:
$ npm start
$ pnpm run start # if using pnpm
To launch tests:
$ npm test
$ pnpm run test # if using pnpm
To generate the app for production:
$ npm run build
$ pnpm run build # if using pnpm