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

browserize

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

browserize

Converts simple node.js modules into ES6 modules

  • 0.0.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

browserize

Converts simple node.js modules into ES6 modules.

  • What it is
  • How to use it

What it is

What it does

browserize turns this:

module.exports = function defaultExport() {}

into this:

export default function defaultExport() {}

What it does not

browserize does not:

  • check if the result will run in a browser
  • transform requires into imports
  • bundle dependencies àla Webpack/Rollup
  • transpile anything other than JavaScript, like CoffeeScript (it might work by coincidence, but there's no support for that)

When to use

browserize is made for small packages without dependencies that should run both in node.js and in the browser.

When not to use

If your package has any dependency, it's probably complex enough to warrant babel, webpack, or some such. Use that instead.

If you need to transpile anything, like CoffeScript or TypeScript, your tooling for that should cover you.

"But browserize does almost what I need"

Open an issue, and let's talk about it 😉

How to use it

CLI

npx browserize [--no-default|-x] [[--default|-d] index.js] [[--named|-n] helpers.js] [[--output|-o] index.mjs]

Three examples

The simplest form
npx browserize

This reads index.js and writes the equivalent index.mjs, and that's it.

Adding named exports
npm browserize -n helper-functions

This reads index.js and helper-functions.js, then transforms concatenates them, and finally writes the result to index.mjs.

The most complex case browserize covers
npx browserize class-name.jsx helper-functions.js dist/browser-magic.js

This includes named exports and sets custom paths for everything.

node API

browserize takes an options object with three optional entries:

  • default: the file where the default export is found, defaults to index.js
  • named: where to find the named exports, defaults to null
  • output: where to write the ESM file, defaults to index.mjs

And that is it.

Two examples

The simplest form
const browserize = require('browserize')
browserize()

This reads index.js and writes the equivalent index.mjs, and that's it.

The most complex case browserize covers
const browserize = require('browserize')

browserize({
	default: 'class-name.jsx',
	named: 'helper-functions.js',
	output: 'dist/browser-magic.js',
})

This includes named exports and sets custom paths for everything.

Requirements

browserize is a simple tool and has a few simple requirements:

Each source file must contain exactly one assignment to module.exports

Good
module.exports = class DefaultExport {}
module.exports = {
	key1: helper1,
	key2: helper2,
}
Bad
exports.key1 = helper1
exports.key2 = helper2

While valid, browserize does not know how to transform this.

module.exports = export1
module.exports = export2

This is not useful anyway.

window.myStuff = class DefaultExport {}

This is not a module.

The default export must be declared without a newline between the assignment operator and the exported item

Good
module.exports = class DefaultExport {}
module.exports = class DefaultExport {
}
Bad
module.exports =
class DefaultExport {}

While this is valid in node.js, it will lead to an invalid ESM file.

The named exports must be declared as an object literal

Good
module.exports = { helper1, helper2 }
module.exports = {
	key1: helper1,
	key2: helper2,
}
Bad
module.exports.key1 = helper1
module.exports.key2 = helper2

While this is valid in node.js, browserize does not understand it.

This is too complex, and has no real benefit over the object literal.

Keywords

FAQs

Package last updated on 03 Feb 2019

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