vanilla-image-loader

This is a simple images loader utility.

Usage no npm install needed!

<script type="module">
  import vanillaImageLoader from 'https://cdn.skypack.dev/vanilla-image-loader';
</script>

README

Vanilla image loader

This is a simple images loader utility.

Any pull request for optimisations and new additions is more than welcome.

Installing vanilla-image-loader

npm install vanilla-image-loader
    or
yarn add vanilla-image-loader

Usage

import loadImage from 'vanilla-image-loader';

loadImage('path/to/image')
    .then(({ width, height }) => {
        console.log(width, height);
    })
    .catch((error) => {
        console.log(error);
    };