bezier-js

WebJar for bezier-js

License

License

MIT
Categories

Categories

JavaScript Languages
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

bezier-js
Last Version

Last Version

2.4.0
Release Date

Release Date

Type

Type

jar
Description

Description

bezier-js
WebJar for bezier-js
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/Pomax/bezierjs

Download bezier-js

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/bezier-js/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>bezier-js</artifactId>
    <version>2.4.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/bezier-js/
implementation 'org.webjars.npm:bezier-js:2.4.0'
// https://jarcasting.com/artifacts/org.webjars.npm/bezier-js/
implementation ("org.webjars.npm:bezier-js:2.4.0")
'org.webjars.npm:bezier-js:jar:2.4.0'
<dependency org="org.webjars.npm" name="bezier-js" rev="2.4.0">
  <artifact name="bezier-js" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='bezier-js', version='2.4.0')
)
libraryDependencies += "org.webjars.npm" % "bezier-js" % "2.4.0"
[org.webjars.npm/bezier-js "2.4.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

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 (./src 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 back-ported.

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.

Without using a package manager

There is a rolled-up version of bezier.js in the dist directory. Just download that and drop it in your JS asset dir.

In Node, as dependency

About as simple as it gets:

import { Bezier } from "bezier-js";

const b = new Bezier(...);

Or, using the legacy CommonJS syntax:

const Bezier = require("bezier-js");

const b = new Bezier(...);

In Node or the browser, from file

Copy the contents of the src 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

All the code is in the src directory, with bezier.js as entry point.

To test code (which automatically applies code formatting and rollup), use npm test.

There is no explicit build step for the library, npm test takes care of everything, except checking for code coverage.

License

This code is MIT licensed.

Engagement

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

Versions

Version
2.4.0