js-flot: Obtain minified flot code

[ javascript, library, mit ] [ Propose Tags ]

This package bundles the minified Flot code (a jQuery plotting library) into a Haskell package, so it can be depended upon by Cabal packages. The first three components of the version number match the upstream flot version. The package is designed to meet the redistribution requirements of downstream users (e.g. Debian).


[Skip to Readme]

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.8.3
Change log CHANGES.txt
Dependencies base (>=4 && <5) [details]
License MIT
Copyright Neil Mitchell 2014
Author Neil Mitchell <ndmitchell@gmail.com>
Maintainer Neil Mitchell <ndmitchell@gmail.com>
Category Javascript
Home page https://github.com/ndmitchell/js-flot#readme
Bug tracker https://github.com/ndmitchell/js-flot/issues
Source repo head: git clone https://github.com/ndmitchell/js-flot.git
Uploaded by NeilMitchell at 2014-11-10T19:56:22Z
Distributions Arch:0.8.3, Debian:0.8.3, Fedora:0.8.3, FreeBSD:0.8.3, LTSHaskell:0.8.3, NixOS:0.8.3, Stackage:0.8.3
Reverse Dependencies 6 direct, 3607 indirect [details]
Downloads 38363 total (166 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for js-flot-0.8.3

[back to package description]

js-flot Hackage version Build Status

This package bundles the minified Flot code (a jQuery plotting library) into a Haskell package, so it can be depended upon by Cabal packages. The first three components of the version number match the upstream Flot version. The package is designed to meet the redistribution requirements of downstream users (e.g. Debian). As an example:

import qualified Language.Javascript.Flot as Flot

main = do
    putStrLn $ "Flot version " ++ show Flot.version ++ " source:"
    putStrLn =<< readFile =<< Flot.file Flot.Flot

Note that Flot depends on jQuery, a Haskell version of which can be obtained from the js-jquery package.