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

requirees

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

requirees

Simple AMD module loader with version support

  • 1.0.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
315
increased by1.61%
Maintainers
1
Weekly downloads
 
Created
Source

Require-es

A microfrontend module loader

Require-es will:

  • allow your micro-frontends to share dependencies
  • help to find compatible package-versions

The project will be structured in 2 parts:

  • provide a module loader which can:
    • load amd modules
    • register multiple versions of a single package
    • set default-versions
    • easily migrate from requirejs
  • create a require-es-server, where:
    • packages can be registered
    • where usage of packages can be tracked

Coming soon (under construction)

//version indication in URL
require.register({
    react: {
        versions: ['0.14.9', '15.6.2', '15.6.1', '15.3.1'],
        url:'https://cdnjs.cloudflare.com/ajax/libs/react/${version}/react.min.js'
    }
});

//consume package (uses package 15.6.2)
require(['react@^15.6.0'], react => console.log(react.version));

Keywords

FAQs

Package last updated on 26 Mar 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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