
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
@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
The npm package @internetarchive/lazy-loader-service receives a total of 94 weekly downloads. As such, @internetarchive/lazy-loader-service popularity was classified as not popular.
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.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.