Comparing version 0.0.1 to 0.0.2
{ | ||
"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 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
8288
1
37
0