Skip to content

Commit

Permalink
docs: add notes about nightly channel
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Dec 6, 2024
1 parent 2eac300 commit de31652
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,30 @@ await storage.getItem("foo:bar"); // or storage.getItem('/foo/bar')

👉 Check out the [the documentation](https://unstorage.unjs.io) for usage information.

## Nightly release channel

You can use the nightly release channel to try the latest changes in the `main` branch via [`unstorage-nightly`](https://www.npmjs.com/package/unstorage-nightly).

If directly using `unstorage` in your project:

```json
{
"devDependencies": {
"unstorage": "npm:unstorage-nightly"
}
}
```

If using `unstorage` via another tool in your project:

```json
{
"resolutions": {
"unstorage": "npm:unstorage-nightly"
}
}
```

## Contribution

- Clone repository
Expand Down

0 comments on commit de31652

Please sign in to comment.