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 installIf you want to use pnpm instead of npm, you can! You can install pnpm via this link and then run the following command:
$ pnpm installTo open the developer server and the application on the browser:
$ npm start
$ pnpm run start # if using pnpmTo launch tests:
$ npm test
$ pnpm run test # if using pnpmTo generate the app for production:
$ npm run build
$ pnpm run build # if using pnpm