Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jsantell/arkitekt
Boilerplate structure for webapps my style.
https://github.com/jsantell/arkitekt
Last synced: about 1 month ago
JSON representation
Boilerplate structure for webapps my style.
- Host: GitHub
- URL: https://github.com/jsantell/arkitekt
- Owner: jsantell
- License: mit
- Created: 2013-09-12T18:48:33.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-09-13T02:47:23.000Z (over 11 years ago)
- Last Synced: 2024-10-16T05:44:48.233Z (3 months ago)
- Language: JavaScript
- Size: 3.34 MB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# arkitekt
This is a bootstrap project for how I like to make web apps. I'll make a post sometime on why I choose which tool for each component. This is a culmination of opinions from experience and still looking to refine the Perfect Client Side Environment™.
## Includes
* **Framework**: [Backbone](https://github.com/jashkenas/backbone)
* **Modules**: [Browserify](https://github.com/substack/node-browserify)
* **Package Manager**: [npm](https://github.com/isaacs/npm)
* **Build**: make
* **Templating**: [jade](https://github.com/visionmedia/jade) to compile into [handlebars](https://github.com/wycats/handlebars.js)
* **Style Preprocessor** [stylus](https://github.com/learnboost/stylus)
* **Markup Preprocessor** [jade](https://github.com/visionmedia/jade)
* **Testing** mocha and chai, but yet to be added
* **Mocks** A tiny mock framework is included for REST calls### Difficulties
* I would love a ES6 preprocessor for destructuring, rest arguments, `let` and `const`, and arrow functions.
* Some work arounds to keep handlebar variables intact during the jade compilation
* jQuery dependency for Backbone, also jQuery not being in npm## Styling Caveats
Source for Bootstrap is modified to support Font Awesome's sprites, with `bootstrap.less` using
```
// No longer uses "sprites.less"
@import "../font-awesome/font-awesome.less"
```And Font Awesome's `@FontAwesomePath` pointing to fonts in the `public/` directory
```
// In `vendor/styles/font-awesome/variables.less`
@FontAwesomePath: "font/"
```## License
MIT