https://github.com/muka/js-tagging
A javascript tagging library to handle generic tag tree
https://github.com/muka/js-tagging
Last synced: about 2 months ago
JSON representation
A javascript tagging library to handle generic tag tree
- Host: GitHub
- URL: https://github.com/muka/js-tagging
- Owner: muka
- License: mit
- Created: 2016-04-20T10:37:49.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-20T13:47:01.000Z (about 9 years ago)
- Last Synced: 2025-02-05T05:18:03.667Z (4 months ago)
- Language: JavaScript
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tagging
A javascript tagging library to handle generic tags tree
```
var tag = new Tag('myobject');var child1 = tag.add({
name: 'another object',
description: ['some']
});console.log(
Tag.fromJSON(
tag.toJSON()
).toJSON()
);```