Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

microplugin

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

microplugin - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

2

bower.json

@@ -5,3 +5,3 @@ {

"description": "A lightweight plugin / dependency system for javascript libraries.",
"version": "0.0.2",
"version": "0.0.3",
"license": "Apache License, Version 2.0",

@@ -8,0 +8,0 @@ "readmeFilename": "README.md",

@@ -5,3 +5,3 @@ {

"description": "A lightweight plugin / dependency system for javascript libraries.",
"version": "0.0.2",
"version": "0.0.3",
"author": "Brian Reavis <brian@thirdroute.com>",

@@ -8,0 +8,0 @@ "main": "src/microplugin.js",

@@ -5,7 +5,7 @@ # microplugin.js

*Keep code modularized & extensible.* MicroPlugin is a lightweight drop-in plugin architecture for your JavaScript library. Plugins can [declare dependencies](#dependencies) to other plugins and can be [initialized with options](#loading-plugins) (in a variety of formats). It's [CommonJS](http://commonjs.org), so it works identically in Node.js and in a browser.
*Keep code modularized & extensible.* MicroPlugin is a lightweight drop-in plugin architecture for your JavaScript library. Plugins can [declare dependencies](#dependencies) to other plugins and can be [initialized with options](#loading-plugins) (in a variety of formats). It [AMD](http://en.wikipedia.org/wiki/Asynchronous_module_definition)-compatible and it works identically in Node.js and in a browser.
```sh
$ npm install microplugin
$ bower install
$ bower install microplugin
```

@@ -116,2 +116,2 @@

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

@@ -129,3 +129,3 @@ /**

var utils = {
isArray: Array.isArray || function() {
isArray: Array.isArray || function(vArg) {
return Object.prototype.toString.call(vArg) === '[object Array]';

@@ -132,0 +132,0 @@ }

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc