A site designed for tracking social links in Persona 4 Golden!
- Install Node.js in order to use the Node Package Manager (npm). Download LTS for your operating system.
- Confirm installation was successful by running
node -vandnpm -v.
- Confirm installation was successful by running
- If package.json isn't in the repo then the project needs to be initialized. Otherwise skip this step.
- Initialize the repo via
npm init -y. - Add Vite, our build tool of choice, via
npm install vite --save-dev. - Add Typescript, the language we will be coding with, via
npm install typescript --save-dev. - Do
npm installto download required modules. After this you should have a foldernode_modules.
- Initialize the repo via
- Run the dev server with
npm run dev. Open the page by clicking the resulting localhost link.
persona-4-tracker/...........Root directory of project
├── public/..................Static assets (images, fonts, icons, etc.)
├── src/.....................Source files (.ts files)
├── index.html...............Main HTML page structure
├── tsconfig.json............Config file for typescript
├── vite.config.ts...........Config file for vite