# jshtml

> razor template engine

Latest version **0.3.0** (published 2013-01-29) · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install jshtml
pnpm add jshtml
yarn add jshtml
bun add jshtml
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 0.3.0 |
| Published | 2013-01-29 |
| First published | 2011-10-22 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Elmer Bulthuis |
| Maintainers | elmerbulthuis |

## Links

- npm: https://www.npmjs.com/package/jshtml
- npm.io page: https://npm.io/package/jshtml

## Dependencies (1)

- [2kenizer](https://npm.io/package/2kenizer.md) >=0.1.6

## Recent versions

- 0.3.0 (latest) — 2013-01-29
- 0.2.4 — 2013-01-29
- 0.2.3 — 2012-04-17
- 0.2.2 — 2011-10-27
- 0.2.1 — 2011-10-25
- 0.2.0 — 2011-10-22

## README

# JsHtml

Master: [![Build Status](https://travis-ci.org/elmerbulthuis/jshtml.png?branch=master)](https://travis-ci.org/elmerbulthuis/jshtml)
Develop: [![Build Status](https://travis-ci.org/elmerbulthuis/jshtml.png?branch=develop)](https://travis-ci.org/elmerbulthuis/jshtml)

JavaScript razor view engine. The razor syntax (also used in asp.net mvc)
keeps your html clean and allows you to use javascript in your templates.

Check out the examples for more information.

If you want to run the tests, be sure to install the devDependencies first by using
	
	npm install
	

## Installation
	
	npm install jshtml


## Example

	<html>
	<head>
		<title>@locals.title</title>
	</head>
	
	<body>
	
	<ul class="Task">
	@for(var taskIndex = 0, taskCount = locals.taskList.length; taskIndex < taskCount; taskIndex ++){
		var task = locals.taskList[taskIndex];
		<li class="@(taskIndex % 2 ? "Odd" : "Even")">
		<a href="/task/@task.id">@task.name</a>
		</li>
	}
	</ul>
	
	<p>
	if you like it, let me know!<br />
	- <a href="mailto:elmerbulthuis@gmail.com">elmerbulthuis@gmail.com</a><br />
	</p>
	
	</body>
	</html>

Also check out the examples in the examples folder!


## Express

use jshtml-express to use it with express 3!

check out https://github.com/elmerbulthuis/jshtml-express for more info.


## License 

Copyright (c) 2011-2013 Elmer Bulthuis <elmerbulthuis@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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