npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@craftkit/craft-bootloader

v1.0.4

Published

Ultra fast web application loader by caching all libraries in IndexedDB

Downloads

20

Readme

CraftBootloader

Ultra fast web application loader by caching all libraries in IndexedDB.

Usage

  1. Load CraftBootloader (craft-bootloader.min.js)
  2. Define window.bootConfig
<html>
<head>
    <script src="https://unpkg.com/@craftkit/craft-bootloader/dist/craft-bootloader.min.js"></script>
    <script>
        window.bootConfig = {
            library : [
                // array of libraries you would like to cache in IndexedDB.
                { uri:'a URI', version:'current version' }
            ],
            onProgress : function(lib){
                // a library has been loaded
            },
            onLibrayLoaded : function(){
                // all libraries have been loaded
            }
        };
    </script>
</head>
<body></body>
</html>

bootConfig spec

| Property | Description | |:----------------|:----------------| | library | Array of library element (see below) | | onLibraryLoaded | Function called when all library elements have been loaded. | | onProgress | Function called when a library element has been loaded. |

library spec

| Property | Description | |:----------------|:----------------| | uri | resource location | | version | version string.If update, the resource will be reloaded.You can use any string for version. But you may use somthing like: 1.1.1. | | metadata | You can defined any other metadata in your library element.This is useful when you manage loading progress by using onProgress |

  • Cached library element will never be updated until you change the version.
  • If you remove some libraries from bootConfig, those will be also removed from IndexedDB.

metadata example

Below sample uses metadata to indicate how much is loaded.

var loaded_percentage = 0;

window.bootConfig = {
    library : [
        { uri:'https://example.com/lib1.js', version:'1.0.0', size:30 },
        { uri:'https://example.com/lib2.js', version:'1.0.0', size:40 },
        { uri:'https://example.com/lib3.js', version:'1.0.0', size:20 },
        { uri:'https://example.com/css1.css', version:'1.0.0', size:10 }
    ],
    onProgress : function(lib){
        loaded_percentage += lib.size;
        console.log(`${loaded_percentage}% loaded`);
    },

Supported resource type

| Type | Suffix | Loader | Description | |:------------|:---------|:--------------------|:-------------| | JavaScript | .js | JavaScriptLoader.js | loaded as text in generated script tag | | Style sheet | .css | StyleSheetLoader.js | loaded as text in generated style tag |

Runnable example

CraftBootloader enhanced version of Craft-Widget-Calendar sample.

<html>
<head>
    <title>Bootloader example</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, viewport-fit=cover"/>
    <style>html,body { width: 100%; height: 100%; box-sizing:border-box; margin:0; padding:0; }</style>
    
    <script src="https://unpkg.com/@craftkit/craft-bootloader/dist/craft-bootloader.min.dev.js"></script>
    <script>
        window.bootConfig = {
            library : [
                { uri:'https://unpkg.com/@craftkit/craft-uikit/dist/craft-uikit.min.js', version:'1.0.0' },
                { uri:'https://unpkg.com/@craftkit/craft-widget-calendar/dist/craft-widget-calendar.min.js', version:'1.0.0' },
                { uri:'https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js', version:'1.0.0' }
            ],
            onProgress : function(lib){
                console.log(lib.uri+' was loaded');
            },
            onLibrayLoaded : function(){
                // prepare demo data
                var meta = {};
                var this_month = moment();
                var prev_month = this_month.clone().subtract(1,'month');
                var next_month = this_month.clone().add(1,'month');
                meta[ prev_month.date(10).format('YYYY-MM-DD') ] = { class:'has_note', note:'appointment 11:00' };
                meta[ this_month.date(15).format('YYYY-MM-DD') ] = { class:'has_note', note:'appointment 9:00' };
                meta[ this_month.date(24).format('YYYY-MM-DD') ] = { class:'has_note', note:'appointment 15:00' };
                meta[ next_month.date(20).format('YYYY-MM-DD') ] = { class:'has_note', note:'appointment 14:00' };
                
                var handler = {
                    handleSelectCalendarMonth : (month) => {
                        month.this_days.forEach( day => {
                            if( meta[day.iso] ){
                                day.classes.push(meta[day.iso].class); // apply has_note css class
                                day.note = meta[day.iso].note; // set metadata
                                day.renderView(); // re-render view
                            }
                        });
                    },
                    handleSelectCalendarDay : (day) => {
                        alert( day.note || 'Free!' );
                    }
                };
                
                class MyDay extends Craft.Widget.Calendar.Day {
                    constructor(options){
                        super(options);
                        this.note = '';
                    }
                    style(componentId){
                        return super.style(componentId) + `
                            .today { background-color: lightgreen; }
                            .has_note { background-color: #f2eb77; }
                        `;
                    }
                }
                
                var calendar = new Craft.Widget.Calendar.View({
                    yyyy       : this_month.format('YYYY'),
                    mm         : this_month.format('MM'),
                    delegate   : handler,
                    Day        : MyDay,
                });
                
                Craft.Core.Bootstrap.boot({
                    didBootApplication : function(options){
                        Craft.Core.Defaults.ALLOW_COMPONENT_SHORTCUT = true;
                        calendar.loadView();
                        document.getElementById('CraftRoot').appendChild(calendar.view);
                    }
                });
            }
        };
    </script>
</head>
<body id="CraftRoot">
</body>
</html>

License

MIT