Enyo (software)

From Wikipedia, the free encyclopedia
Jump to: navigation, search
Enyo
Developer(s) LG
Stable release 2.2 / February 21, 2013 (2013-02-21)
Development status Active
Written in Object-oriented programming
Operating system Cross-platform
Size 17 KB (archived)
Type JavaScript framework
License Apache License 2.0
Website enyojs.com

Enyo is an open source object-oriented JavaScript framework emphasizing encapsulation and modularity for mobile or web application.[1][2][3] The software has been released under an open source license.[4]

Contents

Examples [edit]

This is an example of a 'Hello World!' program in Enyo

enyo.kind({
  name: "HelloWorld",
  kind: enyo.Control,
  content: 'Hello, World!',
});
 
new HelloWorld().write();

Bootplate [edit]

Bootplate is a simplified way of creating an app, providing a skeleton of the program's folder tree. The Bootplate template provides a complete starter project that supports source control and cross-platform deployment out of the box. It can be used to facilitate both the creation of a new project and the preparation for its eventual deployment.[5]

Community [edit]

The IRC channel for Enyo is the channel #EnyoJS on freenode.[6]

See also [edit]

References [edit]

External links [edit]