cerebral / urlon

JSON-like object notation that can be embedded in URLs

Home Page:http://blog.vjeux.com/2011/javascript/urlon-url-object-notation.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

URL Object Notation

An Object Notation like JSON but for URLs. Read the full explanation on @vjeux blog: http://blog.vjeux.com/2011/javascript/urlon-url-object-notation.html

Note that format is slightly changed since article was published, but main idea remains the same.

Getting started

NPM

URLON is on NPM.

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

UMD build using <script>

<script src="https://unpkg.com/urlon/dist/urlon.umd.js"></script>
<script>
  urlon // urlon.stringify() or urlon.parse()
</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}}}

Projects using URLON

  • url-mapper - @cerebral/router default mapper for URLs

Changelog

See releases

About

JSON-like object notation that can be embedded in URLs

http://blog.vjeux.com/2011/javascript/urlon-url-object-notation.html

License:MIT License


Languages

Language:JavaScript 98.2%Language:Shell 1.8%