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

sucrose

v0.8.2

Published

Interactive Charts for Business Applications

Downloads

82

Readme

Sucrose

npm version Build Status codecov

SugarCRM's Business Chart Library based on D3 and using the NVD3 reusable component pattern. This SVG chart library was created to provide a:

  • flexible integration within the Sugar development environment
  • single library for both desktop and mobile applications
  • responsive content and formatting controls
  • internationalization and localization support
  • clean styling for legibility and clarity
  • uses ES6 modules for custom builds for selected chart types
  • over 1,800 unit, integration and data transform tests

Using

This library is dependent on the D3 library so you will need to include that library before Sucrose. D3 version 4.13.0 is the currently supported version and the prebuilt version included in the Sucrose repo is a custom bundle with a subset of D3 modules. Assuming you have downloaded the following files from the Sucrose GitHub Repository local to your webpage:

  1. Include a link tag to the sucrose.min.css in you document head
<link rel="stylesheet" href="sucrose.min.css">
  1. Include the following script tags at the bottom of your document:
<script src="d3.min.js"></script>
<script src="topojson.min.js"></script>
<script src="sucrose.min.js"></script>

To render a chart, instantiate a new chart model, configure chart with options, bind data to a SVG container and call the chart model.

<div id="chart_" class="chart">
  <svg class="sucrose sc-chart"></svg>
</div>
var myChart = sucrose.charts.pieChart()

myChart.options({
    "tooltips": true,
    "donut": true,
    "maxRadius": 250,
    "showLabels": true
  });

d3.select('#chart_ svg')
  .attr('class', 'sucrose sc-chart sc-chart-pie')
  .datum(data)
    .call(myChart);

Chart config options can be found in the API docs. Example data can be found in /examples/data or /test/files/transform.

Examples

The Sucrose Charts example application is available at sucrose.io with configurator, data editor and development package download. The following chart types are currently available:

To view the example application locally,

  1. From the root of the repo directory, run make examples-prod.
  2. Open a browser to sucrose/examples/index.html.
  3. The examples application is a stand-alone single page application which will run offline.
  4. Instruction for using the example application coming soon.

To develop the example application,

  1. Follow the instructions below to verify the build environment is up and running.
  2. From the root of the repo directory, run: make examples-dev.
  3. Open a browser to sucrose/examples/index.html.
  4. The production application is cached in the browser with a manifest and appcache so you may need to clear the application storage cache when changing from production to development.
  5. Run make help from the /examples directory to see a full list of make commands for rebuilding specific code components.

Building

If you are developing new charts in Sucrose you can set up a dev environment with:

  1. Clone this repo: git clone [email protected]:sugarcrm/sucrose.git
  2. Go to the cloned repo directory: cd ./sucrose
  3. To install the NPM packages needed for building the Sucrose source code (including Js, Css, D3 dependencies, and localization resources), run: make dev
  4. To rebuild the entire Sucrose library during development run the make commands: make clean and then make all
  5. Verify that the following core Sucrose files are still in the /build directory:
    • sucrose.js
    • sucrose.min.js
    • sucrose.css
    • sucrose.min.css
    • sucrose.node.js
  6. You should also see the l10n support (see l10n README for more details):
    • translation.json
    • locales.json
  7. You should also see the following third-party library files:
    • d3.js
    • d3.min.js
    • topojson.js
    • topojson.min.js
  8. To just compile the Sucrose Js file, run: make sucrose
  9. To compile a custom bundle of Sucrose and D3 for SugarCRM, run: make sgr
  10. To see a full list of make commands for building specific code components, run: make help

Testing

Unit and integration tests can be run with and without code coverage reporting, from within the repo root:

  1. for unit tests run: npm run test-unit
  2. for DOM (simple integration) tests run: npm run test-dom
  3. for integration tests running in a headless browser run: npm run test-int
  4. for all tests run: npm test

For code coverage analysis first run npm run instrument in order to generate the needed instrumented source files, then:

  1. for unit test code coverage run: npm run cover-unit
  2. for DOM test code coverage run: npm run cover-dom
  3. for integration test code coverage run: npm run cover-int
  4. for complete code coverage run: npm run cover-all

After running unit or DOM code coverage tests, then run npm run cover-rpt to generate a coverage report at /coverage/lcov-report/index.html. The cover-all or cover-int NPM scripts run the coverage report automatically. The results of all coverage runs are merged automatically by nyc. See the testing README for more details.

Contributing:

See CONTRIBUTING for how you can contribute changes back into this project.

Features

  • Check out the live Examples at sucrose.io

Contributing

Everyone is welcome to contribute to Sucrose! If you make a contribution, then the Contributor Terms apply to your submission.

Please check out our Contribution Guidelines for requirements that will allow us to accept your pull request.

License

Copyright 2018 SugarCRM, Licensed by SugarCRM under the Apache 2.0 license.