This project is a valuation for the state of vanilla TypeScript web development in 2022. It's a Brainfuck compiler made with no library dependencies except esbuild for the development server and production build.
- Node.js >= 16.0.0
- Yarn or npm
-
Clone the repository:
git clone <repository-url> cd <repository-directory>
-
Install dependencies:
yarn install # or npm install
To start the development server, run:
yarn dev
# or
npm run dev
To create a production build, run:
yarn build
# or
npm run build
To analyze the production build, run:
yarn analyze
# or
npm run analyze