8000 GitHub - harendranathvegi9/urlon: JSON-like object notation that can be embedded in URLs
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

harendranathvegi9/urlon

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

59 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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] (http://search.npmjs.org/#/URLON).

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}}}

About

JSON-like object notation that can be embedded in URLs

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 75.0%
  • CoffeeScript 21.8%
  • CSS 2.0%
  • HTML 1.2%
0