async-assets
Version:
Async loading of css and javascript files
83 lines (58 loc) • 2.17 kB
Markdown

   
A simple, lightweight JavaScript API for asynchronous including assets.
# Introduction
* [Installation](#installation)
* [NPM](#npm)
* [Use from CDN](#use-from-cdn)
* [Download Assets](#download-assets)
* [How to use?](#how-to-use?)
* [License](#license)
⚡️ Asynchronous loading of styles and scripts without blocking rendering on the page. You can achieve significant growth with Google PageSpeed Insights.
## Installation
There are few options on how to include/import package into your project:
### NPM
You can install package from NPM
```bash
$ npm install async-assets -D
```
Promise based API
```javascript
import AsyncAssets from 'async-assets'
try {
const assets = await AsyncAssets('...')
// do something
} catch (err) {
console.log('Something wrong', err)
}
```
Callback API _(for backward compatibility)_
```javascript
import AsyncAssets from 'async-assets'
AsyncAssets('...', (err) => {
if (err) throw 'Something wrong'
console.log('success')
})
```
### Use from CDN
If you don't want to include package files in your project, you may use it from CDN. The following files are available:
```html
<script src="https://unpkg.com/async-assets/bundle.js"></script>
<!-- or -->
<script src="https://unpkg.com/async-assets/bundle.min.js"></script>
<script>
try {
const assets = await AsyncAssets('...')
// do something
} catch (err) {
console.log('Something wrong', err)
}
</script>
```
### Download assets
If you want to use package locally, you can directly download them from https://unpkg.com/async-assets/
## How to use?
Docs coming soon...
## License
MIT - Copyright (c) 2021-present
developed by [azabroflovski](https://github.com/azabroflovski "azabroflovski") 🍬