Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bitovi/legacy-steal
Project to maintain JMVC history for the Steal project. This is legacy only, live project is stealjs/steal.
https://github.com/bitovi/legacy-steal
Last synced: about 7 hours ago
JSON representation
Project to maintain JMVC history for the Steal project. This is legacy only, live project is stealjs/steal.
- Host: GitHub
- URL: https://github.com/bitovi/legacy-steal
- Owner: bitovi
- License: mit
- Created: 2014-05-27T20:05:19.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-07-21T23:14:30.000Z (over 7 years ago)
- Last Synced: 2024-04-14T22:37:33.479Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 51.3 MB
- Stars: 0
- Watchers: 62
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
@page stealjs StealJS
@parent javascriptmvc 2
@group stealjs.pages PagesStealJS is a collection of command line and JavaScript client utilities
that make building, packaging, and sharing
JavaScript applications easy. Lets see what it can do:### Dependency management ([steal])
[steal] loads modules into your app. Features:
- Loads JS, CSS, Less, CoffeeScript, and client-side templates.
- Parallel loading.
- Works with scripts that don't use steal.@codestart
steal('widgets/tabs.js',
'./style.css',
function(Tabs){
new Tabs("#item");
});
@codeend
### JS/CSS concatenation and minification ([steal.build])[steal.build] combines and minfies an application (or application's) resources
into a small number of minified packages for faster downloading. Features:- Minifies JS, Less, CoffeeScript, and client-side templates.
- Build shared dependencies across [steal.build.apps multiple apps].
- Package modules for [steal.build.packages progressive loading].
- Create modules that work [steal.build.pluginify without steal].@codestart text
js steal/buildjs mypage.html
@codeend### Logging ([steal.dev])
[steal.dev] logs messages cross browser. Messages are removed in production builds.
steal.dev.log('something is happening');
### Code generators ([steal.generate])
[steal.generate] makes building code generators extremely easy. Features:
- Pre-packaged JMVC style code generators.
- Easily author custom generators.@codestart text
js jquery/generate/app cookbook
@codeend### Code cleaner ([steal.clean])
[steal.clean] cleans your code and checks it against JSLint.
@codestart text
js steal/clean path/to/page.html
@codeend### Searchable ajax apps ([steal.html])
[steal.html] makes Google-crawlable html from your ajax app.
@codestart text
js steal/htmljs http://localhost/cookbook.html#recipes
@codeend