New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

render-esm

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

render-esm

Generate static file(s) with module style `exports`. Will render `exports` from arguments, or other modules, as static variables (`const`). When calling other modules, will include all exports which are found using `import * as ...`, including `default` a

latest
Source
npmnpm
Version
1.1.1
Version published
Maintainers
1
Created
Source

Render ECMAScript Modules (ESM) file

Generate static file(s) with module style exports. Will render exports from arguments, or other modules, as static variables (const). When calling other modules, will include all exports which are found using import * as ..., including default assigment, but can be filtered to only render selected named exports. Can also be used to assign exports with function value, or any supported JavaScript type, by passing as arguement into addExport.

Supports Async and Sync methods.

Usage

See tests:

  • Create Instance
  • Reset/Clear Module File
  • Add Named and/or default Export - from argument
  • Add Rendered Named and/or default Export - from another ESM file

Can format file (add Semi-colons) using formateFile from instance.


const renderESM = new RenderESM('./my-new-module.js', { header: 'Header Content' }) 
// will reset existing file by default (calling `resetModuleSync`)
// to maintain existing file content use `false` as third argument
// => will create './my-new-module.js' with `/** Header Content exports as es6 module */` as first line.

renderESM.addExport('myNamedExport', 'a string value.')
// => export const myNamedExport = 'a string value.'

renderESM.formateFile() // as semistandard / is standard by default
// => export const myNamedExport = 'a string value.';


CLI

sill work in progress...

More detailed usage coming...

  • [] usage
  • [] examples
  • [] cli interface
  • [] test import function(s)
  • [] test bulk export(s)

JavaScript Style Guide

Keywords

esm

FAQs

Package last updated on 22 Oct 2018

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