Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@internetarchive/lazy-loader-service
Advanced tools
A small library to lazy load javascript with a Promise
An ES module to lazy load javascript. Based on the lazy loader from Vaadin Router.
npm install @internetarchive/lazy-loader-service
import { LazyLoaderService } from '@internetarchive/lazy-loader-service';
const lazyLoaderService = new LazyLoaderService();
await lazyLoaderService.loadScript({ src: 'https://my-server.com/some-service.js' });
// assuming `some-service.js` creates `window.someService`
const response = window.someService.getResponse('foo');
...
document.head
(the default).<div id="script-container"></div>
import { LazyLoaderService } from '@internetarchive/lazy-loader-service';
const container = document.querySelector('#script-container');
const lazyLoaderService = new LazyLoaderService(container);
module
/ nomodule
import { LazyLoaderService } from '@internetarchive/lazy-loader-service';
const lazyLoaderService = new LazyLoaderService();
await lazyLoaderService.loadBundle({
module: 'https://my-server.com/some-service-module.js',
nomodule: 'https://my-server.com/some-service-nomodule.js'
});
const response = window.someService.getResponse('foo');
...
import { LazyLoaderService } from '@internetarchive/lazy-loader-service';
const lazyLoaderService = new LazyLoaderService();
await lazyLoaderService.loadScript({
src: 'https://my-server.com/some-service.js',
attributes: [{ key: 'foo', value: 'bar' }]
});
=>
<script src="https://my-server.com/some-service.js" async foo="bar"></script>
npm install
npm start
npm test
npm test:bs
npm lint
FAQs
A small library to lazy load javascript with a Promise
We found that @internetarchive/lazy-loader-service demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 13 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.