Rocky_Mountain_Vending/.pnpm-store/v10/files/07/979c83783ac10813103beec49337fc4256064be71bd3448391d9ed3c2f0f543fa25ce324619489e5a16bc97adbdc189813676c4082acc3e7c1328d93c1c067
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

25 lines
280 B
Text

# bare-events
Event emitters for JavaScript.
```
npm install bare-events
```
## Usage
```js
const EventEmitter = require('bare-events')
const e = new EventEmitter()
e.on('hello', function (data) {
console.log(data)
})
e.emit('hello', 'world')
```
## License
Apache-2.0