Skip to content

Commit a9768ed

Browse files
authored
fix: readme links and docs for @web-std/file (#14)
1 parent 55b92ca commit a9768ed

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

file/Readme.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Web API compatible [File][] for nodejs.
99
### Usage
1010

1111
```js
12-
import { File, Blob } from "web-file-polyfill"
12+
import { File, Blob } from "@web-std/file"
1313
const file = new File(["hello", new TextEncoder().encode("world")], "hello")
1414
for await (const chunk of blob.stream()) {
1515
console.log(chunk)
@@ -24,14 +24,14 @@ be able to get all the type innference out of the box.
2424

2525
## Install
2626

27-
npm install web-file
27+
npm install @web-std/file
2828

29-
[node.js ci]: https://github.com/Gozala/web-file/workflows/Node.js%20CI/badge.svg
30-
[version.icon]: https://img.shields.io/npm/v/web-file.svg
31-
[downloads.icon]: https://img.shields.io/npm/dm/web-file.svg
32-
[package.url]: https://npmjs.org/package/web-file
33-
[downloads.image]: https://img.shields.io/npm/dm/web-file.svg
34-
[downloads.url]: https://npmjs.org/package/web-file
29+
[node.js ci]: https://github.com/web-std/file/workflows/Node.js%20CI/badge.svg
30+
[version.icon]: https://img.shields.io/npm/v/@web-std/file.svg
31+
[downloads.icon]: https://img.shields.io/npm/dm/@web-std/file.svg
32+
[package.url]: https://npmjs.org/package/@web-std/file
33+
[downloads.image]: https://img.shields.io/npm/dm/@web-std/file.svg
34+
[downloads.url]: https://npmjs.org/package/@web-std/file
3535
[prettier.icon]: https://img.shields.io/badge/styled_with-prettier-ff69b4.svg
3636
[prettier.url]: https://github.com/prettier/prettier
3737
[blob]: https://developer.mozilla.org/en-US/docs/Web/API/Blob/Blob

0 commit comments

Comments
 (0)