···11+# Based on https://raw.githubusercontent.com/github/gitignore/main/Node.gitignore
22+33+# Logs
44+55+logs
66+_.log
77+npm-debug.log_
88+yarn-debug.log*
99+yarn-error.log*
1010+lerna-debug.log*
1111+.pnpm-debug.log*
1212+1313+# Caches
1414+1515+.cache
1616+1717+# Diagnostic reports (https://nodejs.org/api/report.html)
1818+1919+report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json
2020+2121+# Runtime data
2222+2323+pids
2424+_.pid
2525+_.seed
2626+*.pid.lock
2727+2828+# Directory for instrumented libs generated by jscoverage/JSCover
2929+3030+lib-cov
3131+3232+# Coverage directory used by tools like istanbul
3333+3434+coverage
3535+*.lcov
3636+3737+# nyc test coverage
3838+3939+.nyc_output
4040+4141+# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
4242+4343+.grunt
4444+4545+# Bower dependency directory (https://bower.io/)
4646+4747+bower_components
4848+4949+# node-waf configuration
5050+5151+.lock-wscript
5252+5353+# Compiled binary addons (https://nodejs.org/api/addons.html)
5454+5555+build/Release
5656+5757+# Dependency directories
5858+5959+node_modules/
6060+jspm_packages/
6161+6262+# Snowpack dependency directory (https://snowpack.dev/)
6363+6464+web_modules/
6565+6666+# TypeScript cache
6767+6868+*.tsbuildinfo
6969+7070+# Optional npm cache directory
7171+7272+.npm
7373+7474+# Optional eslint cache
7575+7676+.eslintcache
7777+7878+# Optional stylelint cache
7979+8080+.stylelintcache
8181+8282+# Microbundle cache
8383+8484+.rpt2_cache/
8585+.rts2_cache_cjs/
8686+.rts2_cache_es/
8787+.rts2_cache_umd/
8888+8989+# Optional REPL history
9090+9191+.node_repl_history
9292+9393+# Output of 'npm pack'
9494+9595+*.tgz
9696+9797+# Yarn Integrity file
9898+9999+.yarn-integrity
100100+101101+# dotenv environment variable files
102102+103103+.env
104104+.env.development.local
105105+.env.test.local
106106+.env.production.local
107107+.env.local
108108+109109+# parcel-bundler cache (https://parceljs.org/)
110110+111111+.parcel-cache
112112+113113+# Next.js build output
114114+115115+.next
116116+out
117117+118118+# Nuxt.js build / generate output
119119+120120+.nuxt
121121+dist
122122+123123+# Gatsby files
124124+125125+# Comment in the public line in if your project uses Gatsby and not Next.js
126126+127127+# https://nextjs.org/blog/next-9-1#public-directory-support
128128+129129+# public
130130+131131+# vuepress build output
132132+133133+.vuepress/dist
134134+135135+# vuepress v2.x temp and cache directory
136136+137137+.temp
138138+139139+# Docusaurus cache and generated files
140140+141141+.docusaurus
142142+143143+# Serverless directories
144144+145145+.serverless/
146146+147147+# FuseBox cache
148148+149149+.fusebox/
150150+151151+# DynamoDB Local files
152152+153153+.dynamodb/
154154+155155+# TernJS port file
156156+157157+.tern-port
158158+159159+# Stores VSCode versions used for testing VSCode extensions
160160+161161+.vscode-test
162162+163163+# yarn v2
164164+165165+.yarn/cache
166166+.yarn/unplugged
167167+.yarn/build-state.yml
168168+.yarn/install-state.gz
169169+.pnp.*
170170+171171+# IntelliJ based IDEs
172172+.idea
173173+174174+# Finder (MacOS) folder config
175175+.DS_Store
+15
test/README.md
···11+# test
22+33+To install dependencies:
44+55+```bash
66+bun install
77+```
88+99+To run:
1010+1111+```bash
1212+bun run index.ts
1313+```
1414+1515+This project was created using `bun init` in bun v1.2.0. [Bun](https://bun.sh) is a fast all-in-one JavaScript runtime.