Socket
Socket
Sign inDemoInstall

loadjs

Package Overview
Dependencies
0
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.3.0-rc1 to 4.3.0

8

bower.json
{
"name": "loadjs",
"version": "4.2.0",
"version": "4.3.0",
"license": "MIT",
"authors": [
"Andres Morey <andres@muicss.com>"
"Andres Morey <andres@kubetail.com>"
],
"homepage": "https://github.com/muicss/loadjs",
"homepage": "https://github.com/kubetail-org/loadjs",
"description": "LoadJS is a tiny async loader for modern browsers.",

@@ -15,3 +15,3 @@ "main": [

"type": "git",
"url": "git://github.com/muicss/loadjs.git"
"url": "git://github.com/kubetail-org/loadjs.git"
},

@@ -18,0 +18,0 @@ "keywords": [

# LoadJS Changelog
## 4.3.0 - April, 11, 2024
* Added support for module/nomodule path modifier (https://github.com/kubetail-org/loadjs/issues/108)
## 4.2.0 - December 1, 2019

@@ -18,3 +22,3 @@

* Upgraded devDependencies
* Fixed issue with source code documentation (https://github.com/muicss/loadjs/issues/88)
* Fixed issue with source code documentation (https://github.com/kubetail-org/loadjs/issues/88)

@@ -21,0 +25,0 @@ ## 3.6.0 - March 14, 2019

{
"name": "loadjs",
"version": "4.3.0-rc1",
"version": "4.3.0",
"license": "MIT",

@@ -11,10 +11,10 @@ "description": "Tiny async loader for modern browsers",

],
"homepage": "https://github.com/muicss/loadjs",
"homepage": "https://github.com/kubetail-org/loadjs",
"bugs": {
"url": "https://github.com/muicss/loadjs/issues",
"email": "contact@muicss.com"
"url": "https://github.com/kubetail-org/loadjs/issues",
"email": "hello@kubetail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/muicss/loadjs.git"
"url": "https://github.com/kubetail-org/loadjs.git"
},

@@ -21,0 +21,0 @@ "main": "dist/loadjs.umd.js",

@@ -7,4 +7,2 @@ # LoadJS

[![Dependency Status](https://david-dm.org/muicss/loadjs.svg)](https://david-dm.org/muicss/loadjs)
[![devDependency Status](https://david-dm.org/muicss/loadjs/dev-status.svg)](https://david-dm.org/muicss/loadjs?type=dev)
[![CDNJS](https://img.shields.io/cdnjs/v/loadjs.svg)](https://cdnjs.com/libraries/loadjs)

@@ -14,3 +12,3 @@

LoadJS is a tiny async loading library for modern browsers (IE9+). It has a simple yet powerful dependency management system that lets you fetch JavaScript, CSS and image files in parallel and execute code after the dependencies have been met. The recommended way to use LoadJS is to include the minified source code of [loadjs.js](https://raw.githubusercontent.com/muicss/loadjs/master/dist/loadjs.min.js) in your &lt;html&gt; (possibly in the &lt;head&gt; tag) and then use the `loadjs` global to manage JavaScript dependencies after pageload.
LoadJS is a tiny async loading library for modern browsers (IE9+). It has a simple yet powerful dependency management system that lets you fetch JavaScript, CSS and image files in parallel and execute code after the dependencies have been met. The recommended way to use LoadJS is to include the minified source code of [loadjs.js](https://raw.githubusercontent.com/kubetail-org/loadjs/main/dist/loadjs.min.js) in your &lt;html&gt; (possibly in the &lt;head&gt; tag) and then use the `loadjs` global to manage JavaScript dependencies after pageload.

@@ -53,4 +51,4 @@ LoadJS is based on the excellent [$script](https://github.com/ded/script.js) library by [Dustin Diaz](https://github.com/ded). We kept the behavior of the library the same but we re-wrote the code from scratch to add support for success/error callbacks and to optimize the library for modern browsers. LoadJS is 961 bytes (minified + gzipped).

The latest version of LoadJS can be found in the `dist/` directory in this repository:
* [https://cdn.rawgit.com/muicss/loadjs/4.2.0/dist/loadjs.js](https://cdn.rawgit.com/muicss/loadjs/4.2.0/dist/loadjs.js) (for development)
* [https://cdn.rawgit.com/muicss/loadjs/4.2.0/dist/loadjs.min.js](https://cdn.rawgit.com/muicss/loadjs/4.2.0/dist/loadjs.min.js) (for production)
* [https://cdn.rawgit.com/kubetail-org/loadjs/4.3.0/dist/loadjs.js](https://cdn.rawgit.com/kubetail-org/loadjs/4.3.0/dist/loadjs.js) (for development)
* [https://cdn.rawgit.com/kubetail-org/loadjs/4.3.0/dist/loadjs.min.js](https://cdn.rawgit.com/kubetail-org/loadjs/4.3.0/dist/loadjs.min.js) (for production)

@@ -60,7 +58,7 @@ It's also available from these public CDNs:

* UNPKG
* [https://unpkg.com/loadjs@4.2.0/dist/loadjs.js](https://unpkg.com/loadjs@4.2.0/dist/loadjs.js) (for development)
* [https://unpkg.com/loadjs@4.2.0/dist/loadjs.min.js](https://unpkg.com/loadjs@4.2.0/dist/loadjs.min.js) (for production)
* [https://unpkg.com/loadjs@4.3.0/dist/loadjs.js](https://unpkg.com/loadjs@4.3.0/dist/loadjs.js) (for development)
* [https://unpkg.com/loadjs@4.3.0/dist/loadjs.min.js](https://unpkg.com/loadjs@4.3.0/dist/loadjs.min.js) (for production)
* CDNJS
* [https://cdnjs.cloudflare.com/ajax/libs/loadjs/4.2.0/loadjs.js](https://cdnjs.cloudflare.com/ajax/libs/loadjs/4.2.0/loadjs.js) (for development)
* [https://cdnjs.cloudflare.com/ajax/libs/loadjs/4.2.0/loadjs.min.js](https://cdnjs.cloudflare.com/ajax/libs/loadjs/4.2.0/loadjs.min.js) (for production)
* [https://cdnjs.cloudflare.com/ajax/libs/loadjs/4.3.0/loadjs.js](https://cdnjs.cloudflare.com/ajax/libs/loadjs/4.3.0/loadjs.js) (for development)
* [https://cdnjs.cloudflare.com/ajax/libs/loadjs/4.3.0/loadjs.min.js](https://cdnjs.cloudflare.com/ajax/libs/loadjs/4.3.0/loadjs.min.js) (for production)

@@ -151,10 +149,2 @@ You can also use it as a CJS or AMD module:

1. Load a JavaScript file (only in browsers without Module support)
```javascript
loadjs('nomodule!/path/to/foo.js', function() {
/* foo.js loaded in browsers with module support, skipped in browsers without module support */
});
```
1. Add a bundle id

@@ -372,3 +362,3 @@

```bash
$ git clone git@github.com:muicss/loadjs.git
$ git clone git@github.com:kubetail-org/loadjs.git
$ cd loadjs

@@ -375,0 +365,0 @@ ```

@@ -22,3 +22,3 @@ # Release Instructions

$ git commit -a -m "bumped version number"
$ git push origin master
$ git push origin main
$ git tag <version-number>

@@ -25,0 +25,0 @@ $ git push --tags

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