2.0.0 • Published 8 years ago

URLON v2.0.0

Weekly downloads
22
License
-
Repository
github
Last release
8 years ago

URL Object Notation

An Object Notation like JSON but for URLs. Read the full explanation on my blog.

Get URLON

You first need to enable URLON.

NPM

URLON is on NPM.

npm install URLON
var URLON = require('URLON');

Webpage

<script src="https://raw.github.com/vjeux/URLON/master/src/urlon.js"></script>

Usage

stringify

URLON.stringify('{"table":{"achievement":{"column":"instance","ascending":true}}}')

// Output:      '_table_achievement_column=instance&ascending:true'

parse

URLON.parse('_table_achievement_column=instance&ascending:true')

// Output:  {"table":{"achievement":{"column":"instance","ascending":true}}}
2.0.0

8 years ago

1.0.1

13 years ago

1.0.0

13 years ago