@kichu12348/bunify 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -5
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ bun add bunify
|
|
|
15
15
|
## Quick Start
|
|
16
16
|
|
|
17
17
|
```typescript
|
|
18
|
-
import { Bunify } from "bunify";
|
|
18
|
+
import { Bunify } from "@kichu12348/bunify";
|
|
19
19
|
|
|
20
20
|
const app = new Bunify({ logger: true });
|
|
21
21
|
|
|
@@ -130,7 +130,3 @@ The `reply` object gives you fine-grained control to shape responses gracefully.
|
|
|
130
130
|
- `reply.redirect(url)`: Responds with a 302 redirect
|
|
131
131
|
- `reply.send(content)`: Generic send handler
|
|
132
132
|
- Return directly from `handler` instead of returning `reply.send()` (See Quick Start).
|
|
133
|
-
|
|
134
|
-
## License
|
|
135
|
-
|
|
136
|
-
[MIT](./LICENSE)
|