npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@concord-consortium/jsxgraph

v0.99.8-cc.1

Published

Interactive geometry, plotting, visualization

Downloads

16

Readme

JSXGraph

Interactive Math Library for the Web.

Copyright 2008-2018
    Matthias Ehmann,
    Michael Gerhaeuser,
    Carsten Miller,
    Emmanuel Ostenne,
    Bianca Valentin,
    Heiko Vogel,
    Alfred Wassermann,
    Peter Wilfahrt

About

JSXGraph is a cross-browser library for interactive geometry, function plotting, charting, and data visualization in a web browser. It is implemented completely in JavaScript, does not rely on any other library, and uses SVG, VML, or canvas. JSXGraph is easy to embed and has a small footprint: less than 100 KByte if embedded in a web page. No plug-ins are required! Special care has been taken to optimize the performance.

Starting with version 0.80, JSXGraph supports multitouch devices like the Apple iPad. Since version 0.82 the canvas element is supported, too. That means, JSXGraph also runs on Android devices.

JSXGraph is developed at the Lehrstuhl für Mathematik und ihre Didaktik University of Bayreuth, Germany

Website

  • Project web site: https://jsxgraph.org/
  • Project wiki with hundreds of examples: https://jsxgraph.org/wiki/
  • GitHub project site: https://github.com/jsxgraph/jsxgraph
  • Mailing List/Google Group: http://groups.google.com/group/jsxgraph
  • JSXGraph questions at https://stackoverflow.com/search?tab=newest&q=jsxgraph
  • jsFiddle template: https://jsfiddle.net/vcL7aepo/1/
  • Moodle plug-in: https://github.com/jsxgraph/moodle-jsxgraph-plugin
  • (outdated: SourceForge project site: https://sf.net/projects/jsxgraph)

Please report bugs to our issue tracking system found at https://github.com/jsxgraph/jsxgraph/issues

Build JSXGraph

In order to build JSXGraph you need node.js v0.6+. First, install all dependencies required to build JSXGraph using npm in the JSXGraph root directory:

$ npm install

This will create a new subdirectory node_modules in the JSXGraph root directory which holds all tools and libraries required to build jsxgraphcore.js and run JSXGraph inside node. To build JSXGraph run

$ make core

which will output an unminified version of jsxgraphcore.js in build/bin. To build a minified version run

$ make core-min

Usage

Include jsxgraphcore.js and, if required, one or more file readers in your HTML file. For further usage instructions please consult our wiki especially our tutorials or the API reference docs.

License

JSXGraph is free software dual licensed under the GNU LGPL or MIT License.

You can redistribute it and/or modify it under the terms of the

  • GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version OR
  • MIT License: https://github.com/jsxgraph/jsxgraph/blob/master/LICENSE.MIT

JSXGraph is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License and the MIT License along with JSXGraph. If not, see http://www.gnu.org/licenses/ and http://opensource.org/licenses/MIT/.