Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Commit

Permalink
Renamed from fs-iso to iso
Browse files Browse the repository at this point in the history
  • Loading branch information
james-pre committed Mar 8, 2024
1 parent 117cf60 commit 78aa02c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@browserfs/fs-iso",
"name": "@browserfs/iso",
"version": "0.0.2",
"description": "Zip backend for BrowserFS",
"main": "dist/index.js",
Expand All @@ -10,15 +10,15 @@
"storage"
],
"type": "module",
"homepage": "https://github.com/browser-fs/fs-iso",
"homepage": "https://github.com/browser-fs/iso",
"author": "dr-vortex <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/browser-fs/fs-iso.git"
"url": "git+https://github.com/browser-fs/iso.git"
},
"bugs": {
"url": "https://github.com/browser-fs/fs-iso/issues"
"url": "https://github.com/browser-fs/iso/issues"
},
"engines": {
"node": ">= 18"
Expand Down
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ Please read the BrowserFS documentation!

This package adds `IsoFS`, which allows you to create a *readonly* file system from a iso file.

For more information, see the [API documentation](https://browser-fs.github.io/fs-iso).
For more information, see the [API documentation](https://browser-fs.github.io/iso).

## Installing

```sh
npm install @browserfs/fs-iso
npm install @browserfs/iso
```

## Usage
Expand All @@ -24,7 +24,7 @@ You can't use IsoFS on its own. You must import the core in order to use the bac

```js
import { configure, fs, registerBackend } from '@browserfs/core';
import { IsoFS } from '@browserfs/fs-iso';
import { IsoFS } from '@browserfs/iso';
registerBackend(IsoFS);

const res = await fetch('http://example.com/image.iso');
Expand Down

0 comments on commit 78aa02c

Please sign in to comment.