Skip to content

Commit 90a8de0

Browse files
docs: fixed the package name in README. (#179)
fix #162
1 parent 5f47d13 commit 90a8de0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Examples
5252
```javascript
5353
const http = require('node:http');
5454
const { inspect } = require('node:util');
55-
const Busboy = require('busboy');
55+
const Busboy = require('@fastify/busboy');
5656

5757
http.createServer((req, res) => {
5858
if (req.method === 'POST') {
@@ -107,7 +107,7 @@ const path = require('node:path');
107107
const os = require('node:os');
108108
const fs = require('node:fs');
109109

110-
const Busboy = require('busboy');
110+
const Busboy = require('@fastify/busboy');
111111

112112
http.createServer(function(req, res) {
113113
if (req.method === 'POST') {
@@ -135,7 +135,7 @@ http.createServer(function(req, res) {
135135
const http = require('node:http');
136136
const { inspect } = require('node:util');
137137

138-
const Busboy = require('busboy');
138+
const Busboy = require('@fastify/busboy');
139139

140140
http.createServer(function(req, res) {
141141
if (req.method === 'POST') {

0 commit comments

Comments
 (0)