Browse Source

Update 'README.md'

master
mort 7 years ago
parent
commit
2409ed0ed2
1 changed files with 10 additions and 4 deletions
  1. 10
    4
      README.md

+ 10
- 4
README.md View File

@@ -6,12 +6,16 @@ Webframe is a small and dependency free web application framework.

Install:

npm install --save webframe
```
npm install --save webframe
```

Use:

var webframe = require("webframe");
var app = new webframe.App();
```
var webframe = require("webframe");
var app = new webframe.App();
```

The file example.js contains an example of a small web application.

@@ -45,7 +49,9 @@ Options:
* `res403`: The string to return for a 403 error. "{{pathname}}" will be
replaced with the pathname.

var app = webframe.App({ client_utils: true });
```
var app = new webframe.App({ client_utils: true });
```

### app.route(method, path [, middleware], func)


Loading…
Cancel
Save