Giter Club home page Giter Club logo

iris's Introduction

Iris

A web library for data visualization and exploration

Iris Logo

Version 0.3.2

Build Status

##External Dependencies The following tools need to be installed separately (e.g., with Homebrew) before Iris and its dependencies can be installed:

##Overview Iris is a browser-side library for data visualization widgets written in JavaScript. In addition to a set of widgets, it also includes an API for extending them or building new ones.

The Iris module is equipped with several directives:

  • Ensure Iris dependencies are installed:

      make init
    
  • Run the Iris unit-test suite:

      make test
    
  • To run Iris:

      node app
    

Library Deployment

The JavaScript libraries are managed in separate module files using RequireJS, but they can be packaged into a single library that can be dropped into any page. To build that library, run

make dist

Which will, by default, create a minified library as 'dist/iris.js'. To specify a different output file for the library, use the DISTLIB=/path/to/target.js.

Widget Example

The client-side library can be used on the browser as in the following example:

<!DOCTYPE html>
<head>
    <link rel="stylesheet" href="iris.css" type="text/css">
    <script src="iris.js" type="text/javascript"></script>
    <script>
        iris.require(['charts/bar'], function (Chart) {
            var chart = new Chart({
                element: "body",
                // other options
            });
            chart.setData([ /* Data here */ ]);
            chart.render();
        });
    </script>
</head>
<body>
</body>

##Coding Style and Conventions TODO

iris's People

Contributors

agreiner avatar ajo2995 avatar devoid avatar gingi avatar jaredwilkening avatar shreddd avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Forkers

warelab jermth silvn

iris's Issues

iris check

  • The iris service has been removed.
  • The README references iris check: is this still supposed to work?

iris.css missing

      Express server listening on port 4747
      GET / 200 14ms
      GET /css/iris.css 404 634ms

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.