![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
cycle-svg-pan-and-zoom
Advanced tools
> A Google Maps style SVG pan and zoom component for Cycle.js
A Google Maps style SVG pan and zoom component for Cycle.js
cycle-svg-pan-and-zoom
is a component for Cycle.js that allows you to pan by clicking and dragging, and to zoom with the mouse.
Currently xstream
only, although a pull-request to support other stream libraries is welcome.
First we need to import the component:
import SvgPanAndZoom from 'cycle-svg-pan-and-zoom';
We also need the h
hyperscript helper from @cycle/dom
to make SVG elements.
import {h} from '@cycle/dom';
Then, inside of our main, we set up our SVG:
function main ({DOM}) {
const children$ = xs.of([
h('text', {attrs: {x: 100, y: 100}}, 'hello world')
]);
const svg = SvgPanAndZoom({DOM, children$});
return {
DOM: svg.DOM
}
}
Returns a sinks object with a DOM stream, where the top level element is the svg
.
DOM
(required) - the @cycle/dom
sourcechildren$
(required) - a stream, where each item is an array of hyperscript SVG elementsattrs$
(optional) - a stream of objects that will be used as attrs for the svg
element. useful for setting width and heightWith npm installed, run
$ npm install cycle-svg-pan-and-zoom --save
Contributions are extremely welcome. Please feel free to open an issue or pull request, or to ask any questions.
MIT
FAQs
> A Google Maps style SVG pan and zoom component for Cycle.js
The npm package cycle-svg-pan-and-zoom receives a total of 7 weekly downloads. As such, cycle-svg-pan-and-zoom popularity was classified as not popular.
We found that cycle-svg-pan-and-zoom 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
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.