https://github.com/stacksjs/ts-starter
Quickly bootstrap your next TypeScript / Bun project.
https://github.com/stacksjs/ts-starter
bun ci cli docs pkgx starter-kit testing typescript
Last synced: 1 day ago
JSON representation
Quickly bootstrap your next TypeScript / Bun project.
- Host: GitHub
- URL: https://github.com/stacksjs/ts-starter
- Owner: stacksjs
- License: mit
- Created: 2023-07-31T05:29:10.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-09T15:30:34.000Z (5 days ago)
- Last Synced: 2025-04-11T02:26:28.872Z (4 days ago)
- Topics: bun, ci, cli, docs, pkgx, starter-kit, testing, typescript
- Language: TypeScript
- Homepage:
- Size: 2.8 MB
- Stars: 6
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
- awesome-stacks - ts-starter - TypeScript Starter template to simplify creating & distributing your next npm package. (Projects Using Stacks / Scaffold)
README
[![npm version][npm-version-src]][npm-version-href]
[![GitHub Actions][github-actions-src]][github-actions-href]
[](http://commitizen.github.io/cz-cli/)# bun-ts-starter
This is an opinionated TypeScript Starter kit to help kick-start development of your next Bun package.
## Features
This Starter Kit comes pre-configured with the following:
- π οΈ [Powerful Build Process](https://github.com/oven-sh/bun) - via Bun
- πͺπ½ [Fully Typed APIs](https://www.typescriptlang.org/) - via TypeScript
- π [Documentation-ready](https://vitepress.dev/) - via VitePress
- β [CLI & Binary](https://www.npmjs.com/package/bunx) - via Bun & CAC
- π§ͺ [Built With Testing In Mind](https://bun.sh/docs/cli/test) - pre-configured unit-testing powered by [Bun](https://bun.sh/docs/cli/test)
- π€ [Renovate](https://renovatebot.com/) - optimized & automated PR dependency updates
- π¨ [ESLint](https://eslint.org/) - for code linting _(and formatting)_
- π¦οΈ [pkg.pr.new](https://pkg.pr.new) - Continuous (Preview) Releases for your libraries
- π [GitHub Actions](https://github.com/features/actions) - runs your CI _(fixes code style issues, tags releases & creates its changelogs, runs the test suite, etc.)_## Get Started
It's rather simple to get your package development started:
```bash
# you may use this GitHub template or the following command:
bunx degit stacksjs/ts-starter my-pkg
cd my-pkgbun i # install all deps
bun run build # builds the library for production-ready use# after you have successfully committed, you may create a "release"
bun run release # automates git commits, versioning, and changelog generations
```_Check out the package.json scripts for more commands._
## Testing
```bash
bun test
```## Changelog
Please see our [releases](https://github.com/stackjs/bun-ts-starter/releases) page for more information on what has changed recently.
## Contributing
Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.
## Community
For help, discussion about best practices, or any other conversation that would benefit from being searchable:
[Discussions on GitHub](https://github.com/stacksjs/ts-starter/discussions)
For casual chit-chat with others using this package:
[Join the Stacks Discord Server](https://discord.gg/stacksjs)
## Postcardware
βSoftware that is free, but hopes for a postcard.β We love receiving postcards from around the world showing where Stacks is being used! We showcase them on our website too.
Our address: Stacks.js, 12665 Village Ln #2306, Playa Vista, CA 90094, United States π
## Sponsors
We would like to extend our thanks to the following sponsors for funding Stacks development. If you are interested in becoming a sponsor, please reach out to us.
- [JetBrains](https://www.jetbrains.com/)
- [The Solana Foundation](https://solana.com/)## License
The MIT License (MIT). Please see [LICENSE](LICENSE.md) for more information.
Made with π
[npm-version-src]: https://img.shields.io/npm/v/bun-ts-starter?style=flat-square
[npm-version-href]: https://npmjs.com/package/bun-ts-starter
[github-actions-src]: https://img.shields.io/github/actions/workflow/status/stacksjs/ts-starter/ci.yml?style=flat-square&branch=main
[github-actions-href]: https://github.com/stacksjs/ts-starter/actions?query=workflow%3Aci