Enchant.js
A simple JavaScript framework for creating games and apps
Install / Use
/learn @wise9/Enchant.jsREADME
Download
This is a repository for development. Refer to uei/enchant.js-builds to download pre-built files.
Documentation
- English
- Deutsch (German)
- Japanese
Design
- Compact
- Standalone
- Graphics Object Tree
- Event Driven
Platform
- Chrome
- Safari
- Firefox
- IE9
- iOS
- Android 2.1+
License
MIT License
Usage
<script src='./enchant.js'></script>
<script>
enchant();
window.onload = function(){
var game = new Game(320, 320);
var label = new Label('Hello, enchant.js!');
game.rootScene.addChild(label);
game.start();
}
</script>
More examples and references: GitHub Repository
How to build
Source code is divided into class files (dev/src/*.js). These files include multi-language comments. You can build enchant.js with 'grunt' command from these files. If you want to send a pull request or join development enchant.js, please edit files under dev/src, use this build tool and commit the built work tree.
To setup grunt.js (build tool for node.js) as an npm package, type:
npm install -g grunt-cli
npm install
You additionally need phantomjs to run qunit test in grunt.js.
Build Tasks
gruntdo default tasks (jshint concat uglify qunit exec:lang)grunt watchwatch dev/src/*.js and execgrunt concat uglify langwhen something is modifiedgrunt jshintcheck sourcecode in dev/classes/*.js with jshintgrunt concatgenerate dev/enchant.js from dev/classes/*.jsgrunt uglifygenerate enchant.min.js from dev/enchant.jsgrunt exec:langgenerate enchant.js (English comment only) from dev/enchant.jsgrunt qunitdo qunit tests with phantomjs (headless browser)grunt mochado mocha tests with phantomjs (headless browser)
If you wish to send your codes to github repos, don't forget to run grunt command before you commit your change!
How to contribute
If you found issues or improved codes, please write issues or send a pull request to wise9/enchant.js:develop.
Related Skills
node-connect
341.0kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
84.4kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
341.0kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
84.4kCommit, push, and open a PR


