Skip to content

Commit

Permalink
Fix language on README for npm
Browse files Browse the repository at this point in the history
  • Loading branch information
nichochar committed Jul 30, 2024
1 parent 92e4412 commit bf86ad9
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion srcbook/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This application allows you to create, run, and share Srcbooks. Srcbooks are Jav

### Installing

Srcbook is current distributed as a npm package. You can install it globally with the following command:
Srcbook is currently distributed as a npm package. You can install it globally with the following command:

```bash
# Install
Expand All @@ -25,3 +25,15 @@ You can update Srcbook to the latest version with:
```bash
npm update -g <package_name>
```

### Uninstall

To clean up all Srcbook data on your machine, you'll need to perform the following:

```bash
# Remove the npm package
npm uninstall -g srcbook

# Clear up srcbook files on disk
rm -rf ~/.srcbook/
```

0 comments on commit bf86ad9

Please sign in to comment.