An open API service indexing awesome lists of open source software.

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

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()
);

```