
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@lopatnov/as-umd-module
Advanced tools
A TypeScript library. It converts JavaScript values to a UMD formatted string.
npm install @lopatnov/as-umd-module
<script src="//lopatnov.github.io/as-umd-module/dist/as-umd-module.js"></script>
import asUmdModule from "@lopatnov/as-umd-module";
or
var asUmdModule = require("@lopatnov/as-umd-module")
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 });
}));"
***/
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
License Apache-2.0
Copyright 2019-2020 Oleksandr Lopatnov
FAQs
JavaScript to umd module string converter
We found that @lopatnov/as-umd-module demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.