https://github.com/double-oxygen/urlon-nim
URLON implementation in Nim
https://github.com/double-oxygen/urlon-nim
encode-urls json parser urlon
Last synced: 14 days ago
JSON representation
URLON implementation in Nim
- Host: GitHub
- URL: https://github.com/double-oxygen/urlon-nim
- Owner: Double-oxygeN
- License: mit
- Created: 2022-07-06T15:52:55.000Z (over 3 years ago)
- Default Branch: devel
- Last Pushed: 2022-07-07T10:17:31.000Z (over 3 years ago)
- Last Synced: 2024-04-16T04:52:00.402Z (almost 2 years ago)
- Topics: encode-urls, json, parser, urlon
- Language: Nim
- Homepage:
- Size: 20.5 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# URLON in Nim
**URL Object Notation(URLON)** implemented in Nim.
URLON is originally designed by @vjeux (see [the blog](https://blog.vjeux.com/2011/javascript/urlon-url-object-notation.html)).
The main implementation is [here](https://github.com/cerebral/urlon).
## Installation guide
```sh
nimble install urlon
```
## Run tests
```sh
nimble test
```
## Legacy URLON
Originally the prefix of URLON object is ``_``(underscore).
But now ``$``(dollar sign) is used for it.
The reason why it has changed is described [here](https://github.com/cerebral/urlon/releases/tag/3.0.0).
If you want to use the legacy version, try `-d:legacyUrlon` option.
## License
MIT
© 2022 Double-oxygeN