Skip to content

Commit 599751c

Browse files
committed
updated readme to better reflect changes
1 parent 799160a commit 599751c

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,19 @@ All the features and explanations are in the documentation markdown file.
2222

2323
## How to Run
2424

25-
To install, run:
26-
`npm install steve-template-engine`
25+
Node installation:
26+
`npx jsr add @codingap/steve`
27+
28+
Deno installation:
29+
`deno add jsr:@codingap/steve`
30+
31+
Bun installation:
32+
`bunx jsr add @codingap/steve`
2733

2834
### Usage
2935

3036
```javascript
31-
import { STEVE } from 'steve-template-engine';
37+
import { STEVE } from '@codingap/steve';
3238

3339
STEVE.render('Hello <steve> return Steve.data.name; </steve>!', { name: 'STEVE' });
3440
```

deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codingap/steve",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"exports": "./index.ts",
55
"description": "STEVE is a configurable template engine that allows JavaScript to run in files to create files. It has a plugin system to allow for custom generation and a built-in site generator.",
66
"tasks": {

0 commit comments

Comments
 (0)