pahen / module-definition

Determines whether a JavaScript file is in the CommonJS, AMD, or ES6 format

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

module-definition npm npm

Determines the module definition type (CommonJS, AMD, ES6, or none) for a given JavaScript file by walking through the AST.

npm install module-definition

Usage

var getModuleType = require('module-definition');

// Async
getModuleType('myscript.js', function (err, type) {
  console.log(type);
});

// Sync
var type = getModuleType.sync('myscript.js');
console.log(type);

// From source (string or an AST)
var type = getModuleType.fromSource('define({foo: "foo"});');
console.log(type);

Passes one of the following strings to the given callback or returns the string in sync api:

  • amd

  • commonjs

  • es6

  • none

  • You may also pass an AST to fromSource to avoid an internal parsing of the source

Via shell command (requires a global install: npm install -g module-definition)

module-definition filename

About

Determines whether a JavaScript file is in the CommonJS, AMD, or ES6 format


Languages

Language:JavaScript 100.0%