0.3.0 • Published 11 years ago

jshtml v0.3.0

Weekly downloads
22
License
-
Repository
-
Last release
11 years ago

JsHtml

Master: Build Status Develop: Build Status

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">
@locals.taskList.forEach(function(task, index) {
	<li class="@(index % 2 ? "Odd" : "Even")">
	@tag('a', {href: '/task/' + task.id}, task.name)
	</li>
	});
</ul>

<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 it with express!

Install express and jshtml:

npm install express
npm install jshtml

Create a simple server (/server.js):

var express = require('express');

var port = parseInt(process.argv.pop());
var app = express.createServer();
app.configure(function() {
	app.use(express.bodyParser());
	app.use(app.router);
});

app.set('view engine', 'jshtml');
app.get('/', function(req, res) {
	res.render('index', {
		title : 'Test!',
		message : 'De groeten'
	});
});

app.listen(port);

Create a layout template (/views/layout.jshtml):

<html>
<head>
<title>jshtml</title>
</head>

<body>
@writeBody();
</body>
</html>

Create an index template (/views/index.jshtml):

<h1>@locals.title</h1>
<p>
@locals.message
</p>

Start your server:

node server.js 8080

Browse to:

http://localhost:8080

Result:

<html> 
<head> 
<title>jshtml</title> 
</head> 
 
<body> 
<h1>Test!</h1> 
<p> 
De groeten
</p> 
 
</body> 
</html>

License

Copyright (c) 2011 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.

0.3.0

11 years ago

0.2.4

11 years ago

0.2.3

12 years ago

0.2.2

13 years ago

0.2.1

13 years ago

0.2.0

13 years ago

0.1.7

13 years ago

0.1.5

13 years ago