plast

wrap functions in module namespacing, print functions at different depth levels

Usage no npm install needed!

<script type="module">
  import plast from 'https://cdn.skypack.dev/plast';
</script>

README

plast

parsing AST analyizer

Usage

Plast code has been copied into the example directory and the module name plast has been stripped from cmd.js for testing. Go ahead and try it.

example>> plast -g -d 1 -f index.js

This tells plast to parse the AST of myscript.js and print all the functions at a functional depth of 1 in the AST.

  • -f is mandatory
  • -d defaults to 0
  • -g tells plast to print function names
example>> echo "wrapfuncs getfuncs | plast -w "plast" -f cmd.js

Wrap func1 func2 and func3 with wrapper so that we get wrapper.func1, wrapper.func2 and wrapper.func3. Output is a console log of the transformed source file.

Bonus points

example>> plast -g -d 1 -f index.js | plast -w "plast" -f cmd.js

yeh!

Installation

'''bash

npm install -g plast