Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Socket
Sign inDemoInstall

c3

Package Overview
Dependencies
Maintainers
2
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

c3 - npm Package Compare versions

Comparing version 0.0.1 to 0.3.0

bower.json

40

package.json
{
"name": "c3",
"description": "C3 linearization algorithm",
"version": "0.0.1",
"author": "Silas Sewell <silas@sewell.org>",
"dependencies": {},
"devDependencies": {
"jshint": ">= 0.6.1",
"nodeunit": ">= 0.7.4"
"version": "0.3.0",
"description": "D3-based reusable chart library",
"main": "c3.js",
"scripts": {
"test": "grunt"
},
"repository": {
"type": "git",
"url": "https://github.com/silas/node-c3.git"
"url": "git://github.com/masayuki0812/c3.git"
},
"bugs": { "url": "http://github.com/silas/node-c3/issues" },
"keywords": ["c3", "linearization", "mro"],
"scripts": {
"test": "nodeunit test && jshint ."
"keywords": [
"d3",
"chart",
"graph"
],
"author": "Masayuki Tanaka",
"license": "MIT",
"gitHead": "84e03109d9a590f9c8ef687c03d751f666080c6f",
"readmeFilename": "README.md",
"dependencies": {
"d3": "~3.4.4"
},
"main": "./lib"
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-concat": "~0.5.0",
"grunt-contrib-cssmin": "^0.10.0",
"grunt-contrib-jasmine": "~0.8.0",
"grunt-contrib-jshint": "~0.7.1",
"grunt-contrib-uglify": "~0.4.0",
"grunt-contrib-watch": "^0.6.1",
"load-grunt-tasks": "~0.2.0"
}
}

@@ -1,29 +0,31 @@

# c3 [![Build Status](https://secure.travis-ci.org/silas/node-c3.png)](http://travis-ci.org/silas/node-c3)
c3 [![Build Status](https://travis-ci.org/masayuki0812/c3.svg?branch=master)](https://travis-ci.org/masayuki0812/c3)
==
An implementation of the [C3 linearization algorithm](http://en.wikipedia.org/wiki/C3_linearization).
c3 is a D3-based reusable chart library that enables deeper integration of charts into web applications.
## Getting Started
More information is here: [http://c3js.org](http://c3js.org/)
Install c3
## Tutorial and Examples
npm install c3
+ [Getting Started](http://c3js.org/gettingstarted.html)
+ [Examples](http://c3js.org/examples.html)
Usage
Additional samples are included in this repository:
+ [https://github.com/masayuki0812/c3/tree/master/htdocs/samples](https://github.com/masayuki0812/c3/tree/master/htdocs/samples)
var assert = require('assert')
, c3 = require('c3')
And you can run these samples as:
```
$ cd c3/htdocs
$ python -m SimpleHTTPServer 8080
```
var c = c3('a')
c.add('a', 'b')
c.add('b', 'c')
assert.deepEqual(c.run(), ['a', 'b', 'c'])
## Forum
Now you can ask anything in this forum:
+ [https://groups.google.com/forum/#!forum/c3js](https://groups.google.com/forum/#!forum/c3js)
## Playground
Please fork this fiddle:
+ [http://jsfiddle.net/masayuki0812/7kYJu/](http://jsfiddle.net/masayuki0812/7kYJu/)
## License
This work is licensed under the MIT License (see the LICENSE file).
The implementation is based on [this document][mro] which was released under
the [Python 2.3 license][license].
[mro]: http://www.python.org/download/releases/2.3/mro/
[license]: http://www.python.org/download/releases/2.3/license/
MIT

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc