Socket
Socket
Sign inDemoInstall

bootloader-js

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    bootloader-js

Bootloader.js is a script and resource loader for caching and loading using localStorage.


Version published
Maintainers
1
Install size
52.0 kB
Created

Readme

Source

Bootloader.JS

Instalation

npm install bootloader-js --save

and add in

	<script src="./node_modules/bootloader-js/dist/bootloader.min.js"></script>

Configuration

after script bootloader

	<script>
		window.blConfig = {
			prefix: 'BL.',
            lifeTime: 43200000, // default 12 hours
            noRequireWaitTime: 10000, // default 10 sec.
            cookieName: 'firstLoadBL',
            cookieExpires: 43200000, // default 12 hours expires
            iframeUrl: false, // for cross origin localStorage
		};
	</script>

Example

after bootloader script and config

	<style type="text/css" data-hash="{{ hashFile }}" data-require="1" data-url="{{ urlFile }}"></style>

for javascript file add in

	<script type="text/javascript"  data-hash="{{ hashFile }}" data-require="1" data-src="{{ urlFile }}"></script>

Keywords

FAQs

Last updated on 15 Sep 2015

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc