blob: 64a7c280bc21815cd46536bdd9f13c55810f8dc3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# wurl()
A simple url parsing library for Node.js.
Note this is based directly from the [js-url](https://github.com/websanova/js-url) library. To see the documentation and release notes pleas check the [README](https://github.com/websanova/js-url) page there.
## Install
```
npm install wurl
```
## Usage
```js
var wurl = require('wurl');
wurl('domain', url);
// etc
```
## License
MIT licensed
Copyright (C) 2011-2012 Websanova http://www.websanova.com
|