graphics

0.1.1-0 • Public • Published

graphics

Efficient data structures that represent renderable scenes

This is a direct port of Elm to a commonJS JavaScript library. The purpose is exploration of FRP in plain JavaScript and maybe rewriting Elm's rendering core in more efficient JavaScript.

Example

var MousePosition = require("graphics/mouse").Position
var map = require("graphics/signal/map")
var plainText = require("graphics/element").plainText
var render = require("graphics/render")
 
// Lift the stream of mouse positions through the plainText
// function
var main = map(MousePosition(), plainText)
 
// render the stream of mouse position as text
render(main)

Development

npm i
 
# Either use example 
npm run example
open localhost:9966
 
# Or use tryme 
npm run tryme
open localhost:8080

Installation

npm install graphics

Contributors

  • Raynos

MIT Licenced

/graphics/

    Package Sidebar

    Install

    npm i graphics

    Weekly Downloads

    44

    Version

    0.1.1-0

    License

    none

    Last publish

    Collaborators

    • raynos