Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ng-chartist

Package Overview
Dependencies
Maintainers
1
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ng-chartist

Chartist component for Angular

  • 1.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
9.1K
increased by30.39%
Maintainers
1
Weekly downloads
 
Created
Source

Angular Chartist

Greenkeeper badge Build Status npm version devDependency Status GitHub issues Coverage Status

Demo

https://willsoto.github.io/ng-chartist/demo/

Table of contents

About

Chartist component for Angular 2

Installation

Install through npm:

npm install @angular/core ng-chartist chartist --save

Additionally typings for the chartist library need to be installed:

  • For TSC <= 1.8:
npm install -g typings --save
typings install -g dt~chartist --save
  • For TSC = 2.0+ typings can be installed through npm directly:
npm install @types/chartist --save-dev

Then use it in your app like so:

import {
  NgModule
} from '@angular/core';

import {
  ChartistModule
} from 'ng-chartist';

import {
  MyAppComponent
} from './my-app';

@NgModule({
  imports: [
    ChartistModule,
  ],
  bootstrap: [MyAppComponent]
})
export class AppModule { }

You may also find it useful to view the demo source.

Usage without a module bundler

<script src="node_modules/ng-chartist/dist/ng-chartist.js"></script>
<script>
    // everything is exported ngChartist namespace
</script>

Documentation

All documentation is auto-generated from the source via typedoc and can be viewed here

Development

Prepare your environment

  • Install Node.js and NPM (should come with)
  • Install local dev dependencies: npm install while current directory is this repo

Development server

Run npm start to start a development server on port 8080 with auto reload + tests.

Testing

Run npm test to run tests once or npm run test:watch to continually run tests.

Release

  • Bump the version in package.json (once the module hits 1.0 this will become automatic)
npm run release

License

Apache-2.0

Keywords

FAQs

Package last updated on 11 Mar 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc