Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bunify

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bunify

Bunify is a simplistic routing framework for Bun.sh, designed to bring an Express.js-like experience to the Bun ecosystem.

  • 0.1.0
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Bunify

Bunify is a simplistic routing framework for Bun.sh, designed to bring an Express.js-like experience to the Bun ecosystem.

Features

  • Simplified HTTP methods (app.get, app.post, app.put, app.delete)
  • RegEx support (/ab+cd, /ab*cd, /a(cd)?e)
  • Easy setup and usage
  • Dynamic URL routing (/users/:id) (🚧 In progress)

Installation

Ensure you have Bun.sh installed on your machine.

# Clone the repository
git clone https://github.com/khattakdev/bunify.git

# Navigate to the project directory
cd bunify

# Install dependencies and build the project
bun install

Usage

// Import the Bunify framework
import App from "bunify";

// Create a new app instance
const app = new App();

// Define a simple GET route
app.get("/", (req, res) => {
  return res.send("Hello World!");
});

// Start listening on port 3001
app.listen(3001, () => {
  console.log("Server is running on http://localhost:3001");
});

Testing

Bunify uses Bun's built-in testing utilities for writing and running tests.

# Run tests
bun test

Contributing

Feel free to fork this repository, submit issues, or open pull requests to help improve Bunify.

License

MIT

FAQs

Package last updated on 22 Oct 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc