All Projects → neurospeech → Web Atoms.js

neurospeech / Web Atoms.js

Licence: mit
Enterprise Grade JavaScript Web Components with MVVM inspired from Flex and Silverlight

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Web Atoms.js

moer
一个全新的基于Proxy的MVVM框架
Stars: ✭ 13 (-72.34%)
Mutual labels:  javascript-framework, mvvm
Jetpack Movie
🐼 Simple Architecture Component with Modularization on Android
Stars: ✭ 43 (-8.51%)
Mutual labels:  mvvm
Android App Template
Kickstart your new project with Android App Template (Kotlin + MVVM + AAC + Dagger 2 + Retrofit 2 + RxJava)
Stars: ✭ 34 (-27.66%)
Mutual labels:  mvvm
Wanandroid
Jetpack MVVM For Wanandroid 最佳实践 !
Stars: ✭ 1,004 (+2036.17%)
Mutual labels:  mvvm
Logicflow
A front-end framework for process visualization.
Stars: ✭ 973 (+1970.21%)
Mutual labels:  mvvm
Weaponapp
一个尽量做到极致的集大成App,努力做到最好(开发阶段)——MVVM+Retrofit+RxJava+Small 插件化+单元测试+MD
Stars: ✭ 1,011 (+2051.06%)
Mutual labels:  mvvm
Livedatamvvm
Example Of LiveData in MVVM
Stars: ✭ 33 (-29.79%)
Mutual labels:  mvvm
Mvvm Example
iOS protocol-oriented MVVM examples
Stars: ✭ 45 (-4.26%)
Mutual labels:  mvvm
Papr
🌁 An Unsplash app for iOS
Stars: ✭ 1,025 (+2080.85%)
Mutual labels:  mvvm
Aurelia
Aurelia 2, a standards-based, front-end framework designed for high-performing, ambitious applications.
Stars: ✭ 995 (+2017.02%)
Mutual labels:  javascript-framework
Eyepetizer
🔥基于 Kotlin 语言仿写「开眼 Eyepetizer」的一个短视频 Android 客户端项目,采用 Jetpack + 协程实现的 MVVM 架构。
Stars: ✭ 988 (+2002.13%)
Mutual labels:  mvvm
Androidroom
Android example to show how to use Room to access SQLite database on device for reading and writing data. This example also shows how to use LiveData and ViewModel with Room to build reactive, well performing and easy to maintain applications.
Stars: ✭ 36 (-23.4%)
Mutual labels:  mvvm
Exchange Rates Mvvm
Sample Android project which incorporates MVVM, databinding, RxJava2, Dagger2 and Clean Architecture approach.
Stars: ✭ 43 (-8.51%)
Mutual labels:  mvvm
Mvvmlight
The main purpose of the toolkit is to accelerate the creation and development of MVVM applications in Xamarin.Android, Xamarin.iOS, Xamarin.Forms, Windows 10 UWP, Windows Presentation Foundation (WPF), Silverlight, Windows Phone.
Stars: ✭ 973 (+1970.21%)
Mutual labels:  mvvm
Mvvmc Splitviewcontroller
Example project with UITabBarController inside UISplitViewController using RxSwift and MVVM-C architecture.
Stars: ✭ 45 (-4.26%)
Mutual labels:  mvvm
Plainupnp
PlainUPnP is an upnp control point application for android.
Stars: ✭ 33 (-29.79%)
Mutual labels:  mvvm
Mvue
深入理解 Vue 双向绑定原理,自己动手实现简单的MVVM ,欢迎 star
Stars: ✭ 38 (-19.15%)
Mutual labels:  mvvm
Gank.uwp
http://gank.io 第三方客户端UWP版
Stars: ✭ 41 (-12.77%)
Mutual labels:  mvvm
Newssync
Sample application with MVVM pattern using RxJava and Architecture Components
Stars: ✭ 46 (-2.13%)
Mutual labels:  mvvm
Yox
A lightweight mvvm framework
Stars: ✭ 1,027 (+2085.11%)
Mutual labels:  mvvm

This project has been replaced with Web Atoms Core.

https://github.com/neurospeech/web-atoms-core - An Advanced MVVM Framework for JavaScript in Web and Xamarin.Forms

Web Atoms.js

Enterprise Grade JavaScript UI Framework inspired from Flex and Silverlight.

Web Atoms.js is the only JavaScript framework with precompiler Atoms.js PreCompiler. AtomsPreCompiler compiles atoms markup into valid HTML5 by breaking up inline expressions into generated JavaScript. This pre-compiled document runs in strict mode without using eval without compromising speed.

Installation

Production

    <script src="//cdn.jsdelivr.net/npm/[email protected]/web-atoms.min.js"></script>
    <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/[email protected]/style/atoms.min.css"/>

Development

npm install web-atoms

MVVM

Please look at Web Atoms MVVM for additional libraries of MVVM.

Atoms.js

Powerful customizable Scopes

Web Atoms Scopes

Visual Studio Auto Intellisense - Atoms.js Power Tools 2013

Atoms JS Power Tools 2013 Download: https://visualstudiogallery.msdn.microsoft.com/6956fdb0-174b-4e4c-9bef-e2ed76f1a199

Features

  1. Inbuilt support for MVVM (async/await support with TypeScript)
  2. Less JavaScript - More HTML
  3. Poweful Web Components
  4. Compilation to JavaScript with valid HTML5 markup
  5. Consistent and Logical Syntax
  6. Extensibility
  7. One Time, One Way and Two Way Bindings
  8. Component Object Model
  9. One Liner AJAX
  10. Powerful State Machine
  11. Customizable Templates
  12. Scalability (Able to manage 1000s of rows of data)
  13. UI Virtualization (Reusing and minimizing visible HTML Nodes automatically)
  14. Application State Persistance in URL
  15. Multiple Scopes for Scope Isolation
  16. Ready to use Line of Business Components
  17. Works on Internet Explore 9+ (IE8 is supported but you may have to rewrite CSS), Firefox 10+, Chrome 10+, Safari 4+ and any WebKit based Browser

Web Atoms is inspired from Adobe Flex and Microsoft Silverlight and has very small learning curve. The project contains text template defined in Visual Studio C# Project which recreates output JS files and CSS files.

Download Free Book

A complete guide for Atoms.js is included in this book, the book is available only for personal use with no redistribution and no print rights. Download Atoms.js eBook

Build Instructions

Building Atoms.js project is very easy, you need Visual Studio 2012 onwards and you have to just transform all T4 text templates.

Model Interactive View Controller Pattern

Web application usually contains dual MVC Frameworks, one on server side and another on client side. Maintaining two different MVC is difficult. MVC is good for server side where flow of data is simple as request-process-response. Client side UI frameworks need much more than that. Thats why with Atoms.js, Model and Controller remains on server side, Interactive View is at client side, and interactive view communicates with server with JavaScript Promises (One Liner AJAX).

Atoms.js is built using Component Object Modeling which expose properties for model, and commands for manipulating them. Components can be adujsted on document and data binding and command binding makes them absolutely free of JavaScript.

Each MVC JavaScript requires you to fully understand JavaScript, where else Atoms.js can be used by designers without knowing much of JavaScript.

Documentation

Hosted Documentation

In order to view documentation with all samples, you can simply run the Visual Studio Project and test each sample along with the documentation.

For non Windows platform, you may have to use Apache or some similar web server to host this project as website and then open it on any browser. Since AJAX is disabled on all browsers while accessing it from file:// URI pattern, simply opening index.html on browser will not be sufficient. You can view all documentation without any problems, but to run samples with AtomPromise, you will need a web server.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].