Skip to content

Commit

Permalink
0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dresende committed Feb 5, 2024
1 parent b93a9d7 commit 6ce072a
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.1 - 5 Feb 2024

- Adds Express support

## 0.1.0 - Initial version

Usable initial version, not yet ready to include automatically in Express.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,17 @@ If `debug` flag is disabled or not present, it would instead print:
```

It will try to remove spaces where it know they're not needed.

### Express Usage

```js
import * as Keikan from "keikan"
import express from "express"

const app = express();

app.engine("html", Keikan.renderPath);
app.set("view engine", "html");

// ...
```
4 changes: 2 additions & 2 deletions npm-shrinkwrap.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "keikan",
"version" : "0.1.0",
"version" : "0.1.1",
"type" : "module",
"description" : "Node template based on ejs",
"license" : "MIT",
Expand Down

0 comments on commit 6ce072a

Please sign in to comment.