Javascript template engine. Works server and client side
npm install code-assembly-line!version
!license
!GitHub issues
!npm bundle size
Code-Assembly-Line works for node.js and browsers.
npm i code-assembly-line`It will install module in to the project.
You can start using it by:
`js
// If you are using CommonJS modules:
const CodeAssemblyLine = require ( 'code-assembly-line' );
// If you are using ES6 modules:
import CodeAssemblyLine from 'code-assembly-line';
// Create instance of template engine
const tplEngine = new CodeAssemblyLine();
`$3
Just go to '/dist' folder and get copy of 'code-assembly-line.min.js'. Put the file inside your project folder and add a reference to it from HTML code by using this script tag:
`html
`
Library is avalable as 'CodeAssemblyLine' and start using it.
`js
const tplEngine = new CodeAssemblyLine();
``