# code-assembly-line

> Javascript template engine. Works server and client side

Latest version **5.1.2** (published 2024-12-13) · MIT license · 0 weekly downloads

## Install

```sh
npm install code-assembly-line
pnpm add code-assembly-line
yarn add code-assembly-line
bun add code-assembly-line
```

## Health

**Score 45/100 (D)** — status: stable.

Positive: esm support; no vulnerabilities; high maintenance score.

Warnings: low downloads; no types.

Negative: stale.

## Facts

| | |
|---|---|
| Version | 5.1.2 |
| Published | 2024-12-13 |
| First published | 2017-12-16 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 280.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 3 |
| Author | Peter Naydenov |
| Maintainers | dreamgfx |
| Keywords | template, engine, js, render |

## Links

- npm: https://www.npmjs.com/package/code-assembly-line
- Repository: https://github.com/PeterNaydenov/code-assembly-line
- Homepage: https://github.com/PeterNaydenov/code-assembly-line#readme
- Issues: https://github.com/PeterNaydenov/code-assembly-line/issues
- npm.io page: https://npm.io/package/code-assembly-line

## Alternatives

- [@mapbox/jsonlint-lines-primitives](https://npm.io/package/@mapbox/jsonlint-lines-primitives.md) — 5.3M weekly downloads
- [reftools](https://npm.io/package/reftools.md) — 3.5M weekly downloads
- [@hey-api/openapi-ts](https://npm.io/package/@hey-api/openapi-ts.md) — 3.5M weekly downloads
- [@mapbox/geojson-rewind](https://npm.io/package/@mapbox/geojson-rewind.md) — 2.4M weekly downloads
- [turbo-stream](https://npm.io/package/turbo-stream.md) — 1.7M weekly downloads

## Recent versions

- 5.1.2 (latest) — 2024-12-13
- 5.1.1 — 2024-03-07
- 5.1.0 — 2024-02-08
- 5.0.1 — 2024-01-21
- 5.0.0 — 2024-01-16
- 4.0.2 — 2023-11-12
- 4.0.1 — 2023-01-25
- 4.0.0 — 2021-05-13
- 3.0.2 — 2021-05-07
- 3.0.1 — 2021-04-09
- 3.0.0 — 2019-05-06
- 2.1.1 — 2019-05-02
- 2.1.0 — 2019-04-30
- 2.0.0 — 2018-01-09
- 1.0.3 — 2017-12-31
- … 3 more at https://npm.io/package/code-assembly-line/versions

## README

# Code Assembly Line

![version](https://img.shields.io/github/package-json/v/peterNaydenov/code-assembly-line)
![license](https://img.shields.io/github/license/peterNaydenov/code-assembly-line)
![GitHub issues](https://img.shields.io/github/issues-raw/peterNaydenov/code-assembly-line)
![npm bundle size](https://img.shields.io/bundlephobia/minzip/code-assembly-line)



Code-Assembly-Line works for node.js and browsers.





## It's not a standard template engine
Engine works with templates, data and processes. All items are described in JSON compatible format, in a way to exchange resources via standard AJAX calls. Templates are logicless and are fully decoupled from the data. Partial rendering nature of this engine will give you an opportunity to balance rendering between server and client and you will be able to separate localization, design and data rendering processes. Choose a strategy on missing property values and have fine control on data during rendering process by using hook functions. In brief - **Code-Assembly-Line**.





## Installation

### Installation for Node.js based projects:
From the console:
```
 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();
```



### Installation for browsers
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
 <script src="code-assembly-line.min.js"></script>
```
Library is avalable as '**CodeAssemblyLine**' and start using it.
```js
const tplEngine = new CodeAssemblyLine();
```
Find working example in file '**/dist/index.html**'.





## Links
* [Getting started](https://github.com/PeterNaydenov/code-assembly-line/wiki/Getting-started)
* [Documentation](https://github.com/PeterNaydenov/code-assembly-line/wiki)
* [History of changes](https://github.com/PeterNaydenov/code-assembly-line/blob/master/Changelog.md)
* [Migration guide](https://github.com/PeterNaydenov/code-assembly-line/Migration.guide.md)





## Credits
'code-assembly-line' was created by Peter Naydenov.





## License
'code-assembly-line' is released under the [MIT License](http://opensource.org/licenses/MIT).

---
_Source: https://npm.io/package/code-assembly-line · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
