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

bezier-js

Package Overview
Dependencies
Maintainers
1
Versions
82
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bezier-js

A javascript library for working with Bezier curves

  • 3.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
83K
decreased by-11.17%
Maintainers
1
Weekly downloads
 
Created
Source

Bezier.js

An ES Module based library for Node.js and browsers for doing (quadratic and cubic) Bezier curve work.

For a Demo and the API, hit up either pomax.github.io/bezierjs or read the souce (./lib for the library code, start at bezier.js).

Note: if you're looking for the legacy ES5 version of this library, you will have to install v2.6.1 or below. However, be aware that the ES5 version will not have any fixes/updates backported.

Installation

npm install bezier-js will add bezier.js to your dependencies, remember to add --save or --save-dev if you need that to be persistent of course.

"Not" installation if you just want a single file

There is an already rolled-up version of bezier.js in the docs directory. Just use that.

Use

About as simple as it gets:

import { Bezier } from "bezier-js";

const b = new Bezier(...);

Use in the browser

Copy the contents of the lib directory to wherever you like (/js, /vendor, etc), or place the rolled-up version of the library there, and then load the library as an import to whatever script needs to use the Bezier constructor using:

import { Bezier } from "/js/vendor/bezier-js";

const b = new Bezier(...);

Working on the code

To test new code, use npm test.

There is no build step for the library itself, but to build it for the websiteTo build the library, use npm run build.

License

This code is MIT licensed.

Engagement

For comments and questions, tweet at me or file an issue.

Keywords

FAQs

Package last updated on 24 Oct 2020

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