Skip to content

Guigui14460/portfolio

Repository files navigation

Portfolio

Production link

You can see my portfolio in production.

Creation

Made with ReactJS and Typescript

Setup

For Windows user:

  • install NodeJS here

For Unix user:

  • run sudo apt-get install nodejs npm

With npm

For both OS, run at the root of the project:

$ npm install

With pnpm

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

Commands

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