
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
backgrid_es6
Advanced tools
This repo contains an ES6 version of Backgrid.js, allowing for ES6 imports and tree shaking.
This package is made by deconstructing Backgrid sources, rewriting and separating it into modules and reassembling them using Rollup.
It also bundles ES6 versions of the extensions:
To use this library, your project sould already have
They aren't explicitly listed as dependencies in package.json (for npm nor jspm), because you might want to use other drop in replacements for these dependencies
(for example, lodash@^3 instead of Underscore, backbone_es6 instead of Backbone, or jquery.slim.js build instead of jquery.min.js).
Install with npm as
npm install --save-dev backgrid_es6
or install using JSPM as
jspm install npm:backgrid_es6
This package provides two scripts.
dist/ig_backgrid.es6.js in ES6 format, listed as jsnext:main and module properties in package.jsondist/ig_backgrid.js in UMD format, listed as main in package.jsonIf you're already using ES6 modules in your code (and you should), then import this library as
import {Backgrid} from 'backgrid_es6/ig_backgrid.es6.js';
If you're still using AMD or CommonJS syntax, then you should use ig_backgrid.js which is in UMD format:
var Backgrid = require('backgrid_es6)';
The UMD format is a 100% compatible drop-in replacement for official Backgrid.js.
If you installed Backgrid ES6 with JSPM, backgrid_es6 will be mapped automatically to backgrid.es6.js, so AMD usage would need you to point directly to backgrid.js:
define([
'backgrid_es6/backgrid.js'
],function(Backgrid) {
...your code...
});
But, if you're transpiling (using plugin-babel) you could use AMD syntax as:
define([
'backgrid_es6'
],function(Backgrid) {
// Please note that you need to check for the "default" export
Backgrid = 'default' in Backgrid ? Backgrid.default : Backgrid;
...your code...
});
or
import {Backgrid} from 'backgrid_es6';
As this project is meant to be a full compatible drop-in replacement for Backgrid.js, the same docs apply.
FAQs
Backgrid as an ES6, with bundled plugins and extensions
The npm package backgrid_es6 receives a total of 1 weekly downloads. As such, backgrid_es6 popularity was classified as not popular.
We found that backgrid_es6 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.

Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.

Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.

Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.