https://github.com/bestguy/node-knockout-durandal
Example showing node.js, express, knockout & durandal
https://github.com/bestguy/node-knockout-durandal
Last synced: 3 months ago
JSON representation
Example showing node.js, express, knockout & durandal
- Host: GitHub
- URL: https://github.com/bestguy/node-knockout-durandal
- Owner: bestguy
- Created: 2014-01-26T15:56:24.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2016-01-17T06:13:50.000Z (over 10 years ago)
- Last Synced: 2024-04-14T09:18:03.357Z (about 2 years ago)
- Language: JavaScript
- Size: 487 KB
- Stars: 7
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# node.js, express, Knockout & Durandal example
## Technologies Used:
### Server-Side
- **node.js** - [http://nodejs.org/](http://nodejs.org/)
- Server-side Javascript engine.
- **express** - [http://expressjs.com/](http://expressjs.com/)
- Web application framework for node.js
### Client-Side
- **Knockout.js** - [http://knockoutjs.com](http://knockoutjs.com)
- Used for data-binding between JavaScript models and the DOM
- **requirejs** - [http://requirejs.org](http://requirejs.org)
- Client-side loader for JavaScript, helps to keep code modular.
- **Durandal** - [http://durandaljs.com](http://durandaljs.com)
- JavaScript application library built on Knockout and requirejs that adds advanced modules and view transition functionality.
- **Bootstrap 3** - [http://getbootstrap.com/css/](http://getbootstrap.com/css/)
- CSS framework for responsive layout and grids.
- **Font Awesome** - [http://fontawesome.io/](http://fontawesome.io)
- Web font used for icons - avoids having to use images.
====
## Setup:
- [Install node.js](http://nodejs.org/)
- From this code's directory, run `npm install` to install the modules the node app uses.
## Running:
- From this code's directory, run `node app.js`
- Open browser to [http://localhost:3000/](http://localhost:3000/)