https://github.com/rafaelcamargo/amd-rise
Rise a lite AMD application in minutes
https://github.com/rafaelcamargo/amd-rise
amd javascript requirejs
Last synced: 11 months ago
JSON representation
Rise a lite AMD application in minutes
- Host: GitHub
- URL: https://github.com/rafaelcamargo/amd-rise
- Owner: rafaelcamargo
- Created: 2015-11-13T00:19:42.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2018-04-11T03:11:16.000Z (almost 8 years ago)
- Last Synced: 2025-02-15T20:49:23.173Z (about 1 year ago)
- Topics: amd, javascript, requirejs
- Language: JavaScript
- Homepage:
- Size: 115 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# amd-rise
amd-rise is a minimal AMD application. Its content has only the minimum conditions to start code an app: jQuery, RequireJS, and automated tasks to watch and update *.js* and *.styl* files.
[](https://circleci.com/gh/rafaelcamargo/amd-rise)
## Requirements
To run this project, you need Nodejs installed in your system.
## Installation
```
git clone git@github.com:rafaelcamargo/amd-rise.git
cd amd-rise
npm install -g grunt-cli karma-cli
npm install
grunt start
open http://localhost:9000
```
## Base structure
```
index.html
src
|-- js
|-- |-- main.js
|-- |-- shared
|-- |-- |-- emailValidator.js
|-- |-- views
|-- |-- |-- demo.js
|-- styl
|-- |-- _mixins.styl
|-- |-- _variables.styl
|-- |-- alert.styl
|-- |-- button.styl
|-- |-- modifiers.styl
|-- |-- native.styl
spec
|-- main.js
|-- shared
|-- |-- emailValidatorSpec.js
|-- views
|-- |-- demoSpec.js
```