Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@blinkk/degu
Advanced tools
A general utility library for interactive websites, with a focus on performance.
A general utility library for interactive websites, with a focus on performance.
degu is an interactive developer toolbox. It is not the next buzzword-filled, huge component library with ready-made UI solutions (such as modals, carousels, etc.) but it aims to provide the "hammer and nails" needed to build highly-interactive, performant, kickass websites.
npm install resize-observer-polyfill --save-dev
npm install intersection-observer --save-dev
npm install degu@latest --save-dev
Include resize-observer-polyfill
and intersection-observer
polyfill:
import '../../node_modules/intersection-observer/intersection-observer.js';
import ResizeObserver from 'resize-observer-polyfill';
window['ResizeObserver'] = ResizeObserver;
/* ... insert code that depends on degu ... */
Import the library:
import {WebWorker} from '@blinkk/degu';
const worker = new WebWorker((params)=> {
return params.a * params.b;
})
worker.run({a: 5, b: 2}).then((result)=> {
console.log(result); // 10
})
Import specific files:
import { mathf } from 'degu/lib/mathf/mathf/'
import { is } from 'degu/lib/is/is/'
import * as dom from './dom';
Classes under threef
require three.js deps. Currently supports r110.
npm install --save-dev three@0.110.0
npm install --save-dev @types/three@0.103.2
degu supports only "evergreen" browsers back to the latest two versions:
Please read CONTRIBUTING.md on how to develop for degu.
Please read LICENSE.md
1.0.0 (2021-05-18)
FAQs
A general utility library for interactive websites, with a focus on performance.
We found that @blinkk/degu demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.