All Projects → LaxarJS → Laxar

LaxarJS / Laxar

Licence: mit
Building large applications is hard, so don't do that!

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Laxar

Reaktive
Kotlin multi-platform implementation of Reactive Extensions
Stars: ✭ 760 (+2714.81%)
Mutual labels:  reactive
Commander
Set of reactive functions for cli tools like Swarmer and Composer.
Stars: ✭ 19 (-29.63%)
Mutual labels:  reactive
Dugong
Minimal State Store Manager for React Apps using RxJS
Stars: ✭ 10 (-62.96%)
Mutual labels:  reactive
Reactivemongo
🍃 Non-blocking, Reactive MongoDB Driver for Scala
Stars: ✭ 825 (+2955.56%)
Mutual labels:  reactive
Rxjavafiberinterop
Library for interoperation between RxJava 3 and Project Loom's Fibers.
Stars: ✭ 19 (-29.63%)
Mutual labels:  reactive
Swifteventbus
A publish/subscribe EventBus optimized for iOS
Stars: ✭ 937 (+3370.37%)
Mutual labels:  pub-sub
Rxcombine
Bi-directional type bridging between RxSwift and Apple's Combine framework
Stars: ✭ 741 (+2644.44%)
Mutual labels:  reactive
Lagom Example
Example usage of the Lagom Framework for writing Java-based microservices
Stars: ✭ 20 (-25.93%)
Mutual labels:  reactive
Rxreactor
A Kotlin framework for a reactive and unidirectional RxJava application architecture
Stars: ✭ 19 (-29.63%)
Mutual labels:  reactive
Express
Swift Express is a simple, yet unopinionated web application server written in Swift
Stars: ✭ 855 (+3066.67%)
Mutual labels:  reactive
Realm Core
Core database component for the Realm Mobile Database SDKs
Stars: ✭ 836 (+2996.3%)
Mutual labels:  reactive
Rxbackpressure
A back-pressured rxpy extension
Stars: ✭ 18 (-33.33%)
Mutual labels:  reactive
Platform
Reactive libraries for Angular
Stars: ✭ 7,020 (+25900%)
Mutual labels:  reactive
Ngx Restangular
Restangular for Angular 2 and higher versions
Stars: ✭ 787 (+2814.81%)
Mutual labels:  reactive
Workflow
A Swift and Kotlin library for making composable state machines, and UIs driven by those state machines.
Stars: ✭ 860 (+3085.19%)
Mutual labels:  reactive
Redux Cycles
Bring functional reactive programming to Redux using Cycle.js
Stars: ✭ 755 (+2696.3%)
Mutual labels:  reactive
Scalecube Services
v2.0 - ScaleCube Services provides a low latency Reactive Microservices library for serverless service registry and discovery based on gossip protocol and without single point-of-failure or bottlenecks.
Stars: ✭ 23 (-14.81%)
Mutual labels:  reactive
Reflex
Interactive programs without callbacks or side-effects. Functional Reactive Programming (FRP) uses composable events and time-varying values to describe interactive systems as pure functions. Just like other pure functional code, functional reactive code is easier to get right on the first try, maintain, and reuse.
Stars: ✭ 910 (+3270.37%)
Mutual labels:  reactive
Rxjava2 Operators Magician
你用不惯 RxJava,只因缺了这把钥匙 🔑 You are not used to RxJava, just because of the lack of this key.
Stars: ✭ 868 (+3114.81%)
Mutual labels:  reactive
Vertx Web
HTTP web applications for Vert.x
Stars: ✭ 853 (+3059.26%)
Mutual labels:  reactive

LaxarJS Build Status

Middleware for your web client: Create maintainable applications from small, isolated parts.

Take a look at the documentation site to browse documentation for all releases of this artifact.

Why LaxarJS?

Find out why you would use LaxarJS and if it's the right tool for you. Then, explore the core concepts and browse the manuals in the documentation. Also, there is a glossary where you can lookup individual concepts, and a troubleshooting guide there for you if you need it.

Have a look at the LaxarJS website for demos and more information. Take a look at the documentation site to browse documentation for all releases.

Getting Started

Here are the basic instructions to get started.

Requirements

On your development machine, make sure that you have Node.js v6 or above (v4 might work, but there is no support).

Users of your application will need to have the following browser capabilities:

  • native ES5 support (no polyfills: MSIE < 9 is not supported)

  • Support for the following ES6 features (native or polyfilled):

    • Promise, Fetch
    • Array.from, Array.prototype.includes
    • Object.assign

Modern browsers have support for all of these, but polyfills for the listed ES6 features can be obtained by simply loading the LaxarJS polyfills bundle (dist/polyfills.js) using a script tag, before loading anything else. When using the generator (next step), your project will be setup for use with polyfills automatically.

Using the Generator

Use the generator-laxarjs2 for the Yeoman scaffolding tool to get started:

npm install -g yo generator-laxarjs2
mkdir my-app
cd my-app
yo laxarjs2

This will guide you through a couple of prompts in order to create your first application. There is a step-by-step tutorial containing a more detailed example.

Manual Setup

Using the generator is the recommended way of creating a LaxarJS application. However, knowledge about the manual project setup process is useful for a better understanding of LaxarJS and may help in some advanced use cases, such as migrating a project from a previous major version.

There are detailed instructions to create a project from scratch.

Hacking LaxarJS itself

Instead of using the compiled library within a project, you can also clone this repository:

git clone https://github.com/LaxarJS/laxar.git
cd laxar
npm install

To see changes in your application, either configure your project to work with the sources (e.g. by configuring a webpack alias), or rebuild the bundles:

npm run dist

To run the automated tests:

npm test

To generate HTML test runners for opening in your web browser, so that you can e.g. use the browser's developer tools for diagnostics:

npm start

Now you can select a spec-runner by browsing to http://localhost:8080/dist/lib/.

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].