This template provides a solid foundation for building scalable and maintainable command-line applications with Effect.
This template leverages bun which allows execution of TypeScript files as if they were written in plain JavaScript, while also provided additional features out of the box, such as package management, test runners, REPL, and more.
To execute a file with bun
:
bun run ./path/to/the/file.ts
Building
To build the package:
bun run build
Testing
To test the package:
bun test