
Security News
Deno 2.4 Brings Back deno bundle, Improves Dependency Management and Observability
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
ember-script
Advanced tools
EmberScript is a CoffeeScript-derived language which takes advantage of the Ember.js runtime. Ember constructs such as Inheritance, Mixins, Bindings, Observers, etc. are all first-class citizens within EmberScript.
class PostsController extends Ember.ArrayController
trimmedPosts: ~>
@content.slice(0, 3)
compiles to:
var PostsController;
var get$ = Ember.get;
PostsController = Ember.ArrayController.extend({
trimmedPosts: Ember.computed(function () {
return get$(this, 'content').slice(0, 3);
}).property('content.@each')
});
For a more comprehensive list of live examples, check out the main EmberScript website.
For the most part, but use at your own risk. See the todo list for details. It is recommended to use EmberScript side by side with javascript and/or coffeescript.
If you are using Rails as your backend, simply add the following to your Gemfile:
gem 'ember_script-rails'
All assets ending in .em
will be compiled by EmberScript.
sudo npm install -g 'git://github.com/ghempton/ember-script.git#HEAD'
ember-script --help
make -j build test
FAQs
Ember-infused CoffeeScript
The npm package ember-script receives a total of 5 weekly downloads. As such, ember-script popularity was classified as not popular.
We found that ember-script demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.