-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 2.71 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "tachi",
"description": "Node.js MVC framework for seriously rapid application development.",
"version": "0.0.10",
"author": {
"name": "Ed J",
"email": "ed@ed-j.co.uk"
},
"contributors": [
{
"name": "Ed J",
"email": "ed@ed-j.co.uk"
}
],
"dependencies": {},
"devDependencies": {
"mocha": ">= 1.10.0",
"should": ">= 1.2.2",
"proxyquire": ">= 0.4.1"
},
"keywords": [
"tachi",
"framework",
"mvc",
"web",
"rapid",
"restful",
"router"
],
"repository": {
"type": "git",
"url": "git://github.com/EdJ/Tachi"
},
"main": "index",
"bin": {},
"scripts": {
"test": "mocha"
},
"engines": {
"node": "*"
},
"readme": "## Tachi\r\n[![Build Status](https://secure.travis-ci.org/EdJ/Tachi.png?branch=master)](https://travis-ci.org/EdJ/Tachi)\r\n\r\nNode.js MVC framework for seriously rapid application development.\r\n\r\n## Overview\r\n\r\nQuickly get up and running with a node.js MVC app, using a simple view syntax and an ASP.NET MVC-style project layout. Tachi is all about ease of rapid development, with a simple mindset, easily expandable feature set, and a number of features to help increase web application speed.\r\n\r\nCatch me on twitter (http://twitter.com/sigmoidfx) for more info!\r\n\r\n## Quick Start\r\n```bash\r\nnpm install tachi\r\n```\r\n\r\nGrab a copy of the twitter bootstrap template for Tachi (http://github.com/EdJ/Tachi-bootstrap), or just use the following code:\r\n\r\nControllers/DefaultController.js:\r\n```js\r\nmodule.exports = {\r\n\tindex: function () {\r\n\t\treturn this.Json({ message: 'Hi! Welcome to Tachi!'})\r\n\t}\r\n}\r\n```\r\n\r\nindex.js:\r\n```js\r\nvar TachiHandler = require('Tachi');\r\n\r\nvar routeData = {\r\n\troutes: [\r\n\t\t{\r\n\t\t\turl: '/',\r\n\t\t\tdata: {\r\n\t\t\t\tcontroller: 'DefaultController',\r\n\t\t\t\taction: 'index'\r\n\t\t\t}\r\n\t \t}\r\n\t],\r\n\tdefaultRoute: '/'\r\n};\r\n\r\nvar settings = {\r\n port: 8080\r\n};\r\n\r\nvar handler = new TachiHandler(settings, routeData);\r\nhandler.start();\r\n```\r\n\r\n## Features\r\n\r\n* Solid, understandable routing\r\n* Familiar MVC model (View(), RedirectToAction(), etc.)\r\n* Simple, fast templating engine\r\n* Minimal work required to quickly build complex web apps\r\n\r\n## License\r\n\r\nCopyright (c) 2013 Ed J <ed@ed-j.co.uk>\r\n\r\nDo what you want with the code; No warranty of any kind is given assuming its use.",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/EdJ/Tachi/issues"
},
"_id": "tachi@0.0.5",
"dist": {
"shasum": "0902b7d560317a94d6579e0f7379621f16de0ec9"
},
"_from": "tachi@latest",
"_resolved": "https://registry.npmjs.org/tachi/-/tachi-0.0.5.tgz"
}