0.2.0 • Published 10 years ago

opencolor v0.2.0

Weekly downloads
29
License
MIT
Repository
github
Last release
10 years ago

Open Color Library

A node module to parse, render and interpret Open Color Format.

Build Status: Build Status

js-standard-style

Install

npm install opencolor

Examples

Parsing and rendering OCO formats.

var oco = require('opencolor');

var tree = oco.parse(string); // gives you a tree of the parsed OCO data

var out = oco.render(tree); // outputs a valid oco file of the tree

Creating OCO programmatically

var oco = require('opencolor');

 // creates a root object
var tree = new oco.Entry();

// create a named color from a hex color
var color = new oco.Entry('super color', [oco.ColorValue.fromColorValue('#ff0')], 'Color');
var group = new oco.Entry('group', [color]);
// set some metadata on the group
group.addMetadata({'author/name': 'Jan Krutisch'});
tree.addChild(group);

var out = oco.render(tree); // outputs a valid oco file of the tree

We're going to add more thorough Documentation soon!

Development

git clone https://github.com/opencolor-tools/opencolor-js.git
npm install
npm run test:watch
0.2.0

10 years ago

0.1.0

10 years ago

0.0.8

10 years ago

0.0.7

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago