This repository contains the source code of my personal blog.
- Install the required packages using
npm install - Build the application using
npm run build. - Start the application using
npm start. The application will be available at http://0.0.0.0:8080.
npm run build: Statically generate the pages into thedocsdirectory.npm run clean: Removes thebuildand thedocsdirectories.npm run compile: Bundles the static generator into thebuilddirectory.npm run lint: Lint the source files in thesrcdirectory.npm run lint -- --fix: Automatically fix the lint errors of the source files in thesrcdirectory.npm start: Starts a server serving thedocsdirectory at http://0.0.0.0:8080.npm test: Runs the unit tests and generates the code coverage.npm run typings: Type check the source files in thesrcdirectory.