matoilic / OnsenUI

Hybrid Mobile App UI Framework for iOS and Material Design with Angular and React Components

Home Page:https://onsen.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Onsen UI - Cross-platform HTML5 Mobile App Framework

Onsen UI is a library of UI components to help you create beautiful hybrid and mobile web apps for both Android and iOS using Javascript.

Join us on Gitter Forum TypeScript definitions on DefinitelyTyped Circle CI Coverage Status npm version CDNJS

Onsen UI Todo App

The core library is written in pure Javascript and is framework agnostic which means you can use it with your favorite frameworks such as:

Onsen UI provides styles for both iOS flat design and Android's Material Design. The components will be automatically styled based on the platform which makes it possible to support both iOS and Android with the same source code.

Getting started

We have several resources to help you get started creating hybrid apps with Onsen UI:

Support

If you are having trouble using some component the best place to get help is the Onsen UI Forum. We are also available to answer short questions on Twitter at @Onsen_UI.

Examples with source code

There are lots of sample applications written using Onsen UI. Here are some examples to give you an idea of what kind of apps you can create:

Real time chat app

Download source code

Weather application

Download source code

Todo application

Download source code

What is Onsen UI?

  • Open source, free and open for all. It's designed and implemented to deliver unprecedented user interface and user experience for your mobile and hybrid apps. Onsen UI is built on top of Web Components so applications can be built using HTML tags web developers already know and love.

  • Framework agnostic. This means that it can be used with whatever front-end framework you prefer. However, it also provides a binding library for Angular 1 & 2 which makes it easy to integrate our custom tags with these frameworks. React Components for Onsen UI are also available and they play really well with React tooling such as React Hot Loader, Redux or MobX.

  • Completely integrated with Monaca kit, a complete set of tools that makes PhoneGap/Cordova development super simple. Monaca CLI provides Onsen UI templates, device debugger, remote building and any service you might need directly from your terminal. We also have GUI and cloud alternatives if you prefer that over CLI.

  • Beautifully made with flat (iOS) and Material Design (Android) flavors. It automatically styles your app depending on the platform and gives you control to customize it. Check out our Automatic Styling in action. It also includes Onsen CSS Components, a free resource of UI templates with "theme roller" functionality. Developers can pick and choose, grab the code they need, and they're off and running. And they can create their own templates and submit to Onsen UI to be included with other templates available.

  • Fully documented. And if you want even more, we provide an Interactive Tutorial where you can try and modify examples, export your code online and even generate Cordova projects.

  • Community based. Check out our blog, forum and chat to get the latest updates and directly contact the dev team. We are always very active answering questions so you don't get stuck with your apps.

Browser Support

Onsen UI is tested with the following browsers and mobile OS.

  • Android 4.4+ (and Android 4.0+ with Crosswalk engine)
  • iOS8+
  • Google Chrome
  • Safari

What's Included

Getting Started Using Templates

See the Onsen UI Getting Started page. We provide project templates for you in the project-templates repository. You will see the instruction on how to run the project there. For Visual Studio developers we provide directly provide Onsen UI extension.

Getting Started Using Monaca

Monaca is a set of tools that makes hybrid mobile app development with PhoneGap/Cordova simple and easy: debugging suite, push notifications, remote build, back-end, encryption, version control and more. See the Onsen UI Getting Started Page for more information.

$ [sudo] npm -g install monaca
$ monaca create helloworld # And choose the starter template
$ cd helloworld # Switch to the directory
$ monaca preview # Preview on the browser
$ monaca debug # Preview on the real device

Download Onsen UI

Onsen UI is available with npm, bower or jspm. Example:

npm install onsenui

For React:

npm install react-onsenui

For Angular2:

$ npm install angular2-onsenui

How to manually build this project

Clone this repository and run the following commands to build the project:

$ cd css-components
$ yarn
$ gulp build
$ cd ..
$ yarn
$ gulp build

This command requires you to install yarn if you haven't already. The files will be built and copied into build folder.

Running Examples

$ gulp serve

Running the test suite

Onsen UI has unit tests for the Web Components as well as end-to-end testing of the binding libraries using Protractor.

Use the following commands to run the unit tests:

$ gulp unit-test

or these commands for end-to-end testing of the binding libraries:

$ cd bindings/angular1
$ gulp e2e-test
$ cd bindings/angular2
$ npm install
$ gulp e2e-test

It will take some time the because it will download a stand-alone Selenium Server and a Chrome webdriver the first time it's executed.

To run a single test or a group of tests use the --specs parameter and provide a comma-separated list of spec files:

$ cd bindings/angular1
$ gulp e2e-test --specs test/e2e/lazyRepeat/scenarios.js

In order to run both the unit tests and the end-to-end tests use the following command:

$ gulp test

How to contribute

Please see our document on contributing. See the full list of contributors here.

Release procedure

Before releasing a new version, verify that the tests are passing and that there are no outstanding breaking issues. For major release with fundamental changes all components must be tested on all supported platforms.

The first step is to add increase the version number in package.json and commit it. After that a new tag must be added:

git tag -a 2.3.4

This tag is important for building the documentation on the website.

The next step is to run the release script:

cd scripts
sh dist-release.sh

This will build Onsen UI and put the files in the OnsenUI-dist directory.

The last step is to release the package on NPM. From the root of the repository do the following:

cd OnsenUI-dist;
npm publish

About

Hybrid Mobile App UI Framework for iOS and Material Design with Angular and React Components

https://onsen.io/

License:Other


Languages

Language:JavaScript 62.4%Language:CSS 17.7%Language:HTML 13.3%Language:TypeScript 4.6%Language:Vue 1.8%Language:Shell 0.1%Language:Smarty 0.0%Language:PHP 0.0%