0.0.10 • Published 12 years ago

frame5 v0.0.10

Weekly downloads
17
License
-
Repository
github
Last release
12 years ago

Frame5 - HTML5 Framework

Frame5 is an attempt creating an HTML5 framework. Under the umbrella standard HTML5 a lot of technological are at play. Frame5's goal is to bring together as many of the specs as it can.

Wish List

Have

Need

Links

Main

How to use

The Server

Install with NPM

npm install frame5
var express = require('express');
var http = require('http');

var Frame5 = require('frame5')

var app = express.createServer()


app.use(express.favicon())
app.use(express.logger('dev'))
app.use(express.cookieParser())

app.use(express.session({
	secret : 'my secret here'
}))


app.use(Frame5(app))


app.get('/test', function(req, res) {
	res.sendfile('./test.html')
})

app.listen(3000);

The Client

<!DOCTYPE html>
<html>

	<head>
		<meta charset="utf-8">
		<meta name="viewport" content="width=device-width, initial-scale=1">
		<title>Frame5</title>
		
		<!--
		//
		//
		//
		-->
		
		<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
		
		<!--
		//
		//
		//
		-->
		
		<script src="/frame5"></script>

		<!--
		//
		//
		//
		-->
	</head>

	<body>
	<script>
		console.log(Frame5);
	</script>
	</body>
</html>
0.0.10

12 years ago

0.0.9

12 years ago

0.0.8

12 years ago

0.0.7

12 years ago

0.0.5

12 years ago

0.0.4

12 years ago

0.0.3

12 years ago

0.0.2

12 years ago

0.0.1

12 years ago