JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 35
  • Score
    100M100P100Q90619F
  • License MIT

A collection of functions to parse Open Color files, construct them via code and write them

Package Exports

  • opencolor

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (opencolor) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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