Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/unscriptable/beck
beck is obsolete. check out RaveJS: https://github.com/RaveJS/rave
https://github.com/unscriptable/beck
Last synced: about 1 month ago
JSON representation
beck is obsolete. check out RaveJS: https://github.com/RaveJS/rave
- Host: GitHub
- URL: https://github.com/unscriptable/beck
- Owner: unscriptable
- License: other
- Created: 2013-07-05T14:10:11.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-12-17T22:00:48.000Z (almost 11 years ago)
- Last Synced: 2024-10-04T17:18:38.530Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 258 KB
- Stars: 5
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- es6-tools - beck.js - toolkit for ES6 Module Loader pipelines, shim for legacy environments (Module Loaders / Brunch Plugins)
README
# beck.js
# This is a work in progress
beck.js is a toolkit for building ES6 Module Loader pipelines as well as an ES6
Module Loader shim for legacy environments.The shim deviates from the spec in various ways. It does this when the
spec seems to do strange things or makes it really difficult to do
common things -- things we've been doing with javascript modules since 2007.# This isn't ready for use, yet.
This project probably isn't ready for you to try out, yet. It only
understands CommonJS modules that have not been concatenated using some
sort of transport format (browsers) and has onlly been rudimentally tested
in modern browsers, node.js, and RingoJS.Stay tuned for further updates.
## Loader behavior
* Sense if environment has an ES6 loader already
* If not, stub one asap
* Await first require/request or config() call
* If config()
* Ensure amd, cjs, or es6 shims are properly installed
* If main, loader.load(main)
* If require() or data-beck-run
* If no config has been set for this module, sniff for package.json at
every folder in path to module, starting at deepest and ending at
document's folder (also: bower.json and beck.json)
* Ensure amd, cjs, or es6 shims are properly installed
* System.load(module)
* Config could also be supplied in an HTML data-* attr## Open questions
* How does beck wait for first require/request or config() call in node/ringo?
* ENV var?
* System.load/import## Differences from ModuleLoader/es6-module-loader / ES6 Spec
* Do scripts get normalized or resolved?
* beck: maybe normalization isn't necessary, but resolving seems useful!
* ModuleLoader: they don't get normalized or resolved
* ES6 spec: hard to follow code, but it seems similar
* Should all pipeline steps be async?
* beck: yes!
* ModuleLoader: just fetch
* ES6 spec: just fetch
* Pass options to import, load, eval, and evalAsync
* beck: creates options internally
* ModuleLoader: creates options internally
* ES6 reference impl: passes it in and uses it for referer only