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

@lopatnov/as-umd-module

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lopatnov/as-umd-module

JavaScript to umd module string converter

  • 1.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

@lopatnov/as-umd-module

NPM version License Build Status Twitter

A TypeScript library. It converts JavaScript values to a UMD formatted string.

Install

https://nodei.co/npm/@lopatnov/as-umd-module.png?downloads=true&downloadRank=true&stars=true

npm install @lopatnov/as-umd-module

Browser

<script src="//lopatnov.github.io/as-umd-module/dist/as-umd-module.js"></script>

Import package to the project

import asUmdModule from "@lopatnov/as-umd-module";

or

var asUmdModule = require("@lopatnov/as-umd-module")

Convert JavaScript values into umd module string

asUmdModule(...values: IModuleValue[]) => string

where

interface IModuleValue {
  name: string;
  exports: any;
}

Example of using:

let umdModule = asUmdModule({
    name: "onmessage",
    exports: function(e) {
        console.log('Worker: Message received from main script');
        let result = multiply(e.data[0], e.data[1]);
        if (isNaN(result)) {
            postMessage('Please write two numbers');
        } else {
            let workerResult = 'Result: ' + result;
            console.log('Worker: Posting message back to main script');
            postMessage(workerResult);
        }
    }
}, {
    name: "multiply",
    exports: function(a, b) {
        return a * b;
    }
});

console.log(umdModule);

/***
Expected result of umdModule variable is string like
"(function (global, factory) {
        typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
        typeof define === 'function' && define.amd ? define(['exports'], factory) :
        (global = global || self, factory(global));
    }(this, function (exports) { 'use strict';
    exports.onmessage = function(e) {
        console.log('Worker: Message received from main script');
        let result = multiply(e.data[0], e.data[1]);
        if (isNaN(result)) {
            postMessage('Please write two numbers');
        } else {
            let workerResult = 'Result: ' + result;
            console.log('Worker: Posting message back to main script');
            postMessage(workerResult);
        }
    };
    exports.multiply = function(a, b) {
        return a * b;
    };

    Object.defineProperty(exports, '__esModule', { value: true });
}));"

***/

Demo

See, how it's working: https://runkit.com/lopatnov/as-umd-module-demo

Test it with a runkit: https://npm.runkit.com/%40lopatnov%2Fas-umd-module

Rights and Agreements

License Apache-2.0

Copyright 2019-2020 Oleksandr Lopatnov

Keywords

FAQs

Package last updated on 08 Aug 2020

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