Socket
Book a DemoInstallSign in
Socket

seatransform

Package Overview
Dependencies
Maintainers
2
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

seatransform

seatransform ============

0.2.1
latest
Source
npmnpm
Version published
Weekly downloads
0
Maintainers
2
Weekly downloads
 
Created
Source

seatransform

transform AMD/CommonJS/Module to CMD

NPM version Build Status

API

  • transform(code:String):String
    • transform source code to CMD
    • for CommonJs it will wrap define
    • for AMD it will:
      • delete define.AMD and define.AMD.xxx
      • modify the factory params to require, exports, module
      • add dependence by var dependence = require("dependence") in factory top
    • for ES6 module it will:
      • transform module from: var dependence = require("dependence")
      • transform import from: var property;!function(){var _0_=require("dependence");property=_0_.property;}();
      • also support alias: var alias;!function(){var _0_=require("dependence");alias=_0_.property;}();
      • export var and function: var v;function f(){};exports.v=v;exports.f=f;
      • export default: module.exports=something;
    • for ES6 it will transform to ES5
    • otherwise it will return your source code

INSTALL

npm install seatransform

FAQs

Package last updated on 09 Jul 2014

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.