@lectro/enhancer-commonutils

1.1.2-alpha-13 • Public • Published

Lectro Enhancer Commonutils

Add these Common functions in your global scope of your Node Application

  • fetch

The function will not be added in the scope until it is used anywhere, so you can use any of the above function, only the used function will be added in the code

Usage

  • Install the module yarn add @lectro/enhancer-flowruntime
  • Create a devserver file dev.js with the following contents
const Lectro = require('@lectro/enhancer-flowruntime');
const lectro = new Lectro
lectro.dev()
  • Use node dev.js to run devserver

  • This will run the contents of src/index.js file with all the necessary polyfills

  • To combine Enchancer-Commonutils with other lectro enhancements follow this

const EnchancerFlowruntime = require('@lectro/enhancer-flowruntime')
const EnhancerCommonutils = require('@lectro/enhancer-commonutils')

const lectro = EnchancerFlowruntime.combine(new EnhancerCommonutils)

lectro.dev()
  • To build your bundle
const EnhancerCommonutils = require('@lectro/enhancer-commonutils')
const lectro = EnchancerFlowruntime.combine(new EnhancerCommonutils)

const lectro = new EnhancerCommonutils

// or this if you want to combine with other enhancer

const EnchancerFlowruntime = require('@lectro/enhancer-flowruntime')
const lectro = EnchancerFlowruntime.combine(new EnhancerCommonutils)

lectro.build()
  • Use node build.js to run build

  • This will build the contents of src/index.js file with all the necessary polyfills to build/main.js.

Versions

Current Tags

Version History

Package Sidebar

Install

npm i @lectro/enhancer-commonutils

Weekly Downloads

7

Version

1.1.2-alpha-13

License

MIT

Unpacked Size

5.24 kB

Total Files

5

Last publish

Collaborators

  • raybulgarin