Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
:warning: This package needs your support to stay maintained. If you work for an organization whose website is better off using Bezier.js than rolling its own code solution, please consider talking to your manager to help fund this project. Open Source is free to use, but certainly not free to develop. If you have the means to reward those whose work you rely on, please consider doing so. :warning:
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.
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.
There is a rolled-up version of bezier.js
in the dist
directory. Just download that and drop it in your JS asset dir.
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(...);
Node Version | Require Supported | Import Supported |
---|---|---|
v12.0.0 | Yes | Yes Experimental Flag |
v12.14.1 | Yes | No Experimental Flag |
v12.17.0 | Yes | Yes Experimental Warning |
v12.22.1 | Yes | Yes |
v14.0.0 | Yes | Yes |
v14.16.1 | Yes | Yes |
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(...);
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.
This code is MIT licensed.
For comments and questions, tweet at me or file an issue.
FAQs
A javascript library for working with Bezier curves
The npm package bezier-js receives a total of 65,821 weekly downloads. As such, bezier-js popularity was classified as popular.
We found that bezier-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.