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

hono

Package Overview
Dependencies
Maintainers
1
Versions
337
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hono - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

7

package.json
{
"name": "hono",
"version": "0.0.1",
"version": "0.0.2",
"description": "Minimal web framework for Cloudflare Workers",

@@ -11,2 +11,7 @@ "main": "src/hono.js",

"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yusukebe/hono.git"
},
"homepage": "https://github.com/yusukebe/hono",
"devDependencies": {

@@ -13,0 +18,0 @@ "jest": "^27.4.5",

@@ -1,3 +0,30 @@

## hono
# hono
Minimal web framework for Cloudflare Workers.
## Install
```sh
$ yarn add hono
```
or
```sh
$ npm install hono
```
## Hello hono!
```js
const Hono = require("hono");
const app = Hono();
app.get("/", () => new Response("Hono!!"));
app.fire(); // call `addEventListener`
```
Then, run `wrangler dev`.
## Author

@@ -4,0 +31,0 @@

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