All Projects → ngxs → Ngxs Examples

ngxs / Ngxs Examples

NGXS Example Apps

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Ngxs Examples

Examples wxWidgets
Shows how to use wxWidgets controls only by programming code (c++17).
Stars: ✭ 116 (+45%)
Mutual labels:  examples, samples
react-samples
Multi-project repository containing examples to explain react concepts.
Stars: ✭ 25 (-68.75%)
Mutual labels:  examples, samples
Thinking In Spring Boot Samples
小马哥书籍《Spring Boot 编程思想》示例工程
Stars: ✭ 1,725 (+2056.25%)
Mutual labels:  samples, examples
Examples
An complete examples and related support for various popular projects, and more.
Stars: ✭ 22 (-72.5%)
Mutual labels:  examples, samples
playground
📚 Examples, projects, webprojects, skeletons for Nette Framework (@nette) from community members. Included @contributte @apitte @nettrine projects.
Stars: ✭ 23 (-71.25%)
Mutual labels:  examples, samples
Rxjava2 Android Samples
RxJava 2 Android Examples - Migration From RxJava 1 to RxJava 2 - How to use RxJava 2 in Android
Stars: ✭ 4,950 (+6087.5%)
Mutual labels:  samples, examples
examples
Example actors, capability providers, and other demonstrations
Stars: ✭ 93 (+16.25%)
Mutual labels:  examples, samples
Unity3D-JobsSystemAndBurstSamples
Examples of using the Job System in Unity 2018
Stars: ✭ 46 (-42.5%)
Mutual labels:  examples, samples
db2-samples
Db2 application code, configuration samples, and other examples
Stars: ✭ 56 (-30%)
Mutual labels:  examples, samples
Examples
Many examples of Raku code
Stars: ✭ 276 (+245%)
Mutual labels:  samples, examples
Haxe Basics
The collection of easy samples and hello-worlds for Haxe.
Stars: ✭ 78 (-2.5%)
Mutual labels:  samples, examples
Getting Started Dotnet
A tutorial for creating a complete application using .NET on Google Cloud Platform
Stars: ✭ 71 (-11.25%)
Mutual labels:  samples
Js By Examples
Learn JavaScript by examples
Stars: ✭ 1,138 (+1322.5%)
Mutual labels:  examples
Torch Models
Stars: ✭ 65 (-18.75%)
Mutual labels:  examples
Mixed Reality Extension Sdk Samples
Sample code for the Mixed Reality Extension SDK (https://github.com/Microsoft/mixed-reality-extension-sdk)
Stars: ✭ 65 (-18.75%)
Mutual labels:  samples
Example React Native Redux
react native redux counter example
Stars: ✭ 1,186 (+1382.5%)
Mutual labels:  examples
Azure Devops Python Samples
Python samples for interacting with and managing Azure DevOps
Stars: ✭ 68 (-15%)
Mutual labels:  samples
Ohloh api
Ohloh API examples
Stars: ✭ 64 (-20%)
Mutual labels:  examples
Reporting Services Examples
📕 Various example reports I use for SQL Server Reporting Services (SSRS) as well as documents for unit testing, requirements and a style guide template.
Stars: ✭ 63 (-21.25%)
Mutual labels:  examples
Vuex Orm Examples Nuxt
The example Nuxt application to demonstrate the use case of the Vuex ORM.
Stars: ✭ 63 (-21.25%)
Mutual labels:  examples

Examples of using the NGXS library

Getting Started

  • Clone the repository into a local folder.
  • Install dependencies yarn install
  • Run any project example yarn start:X where X is a number of the example
  • Try experimenting with code

Description of examples

  1. Search articles in Wiki API

A simple NGXS store for three components. The application fetches and displays data from Wiki API. It will demonstrate handling actions as asynchronous entities and practical goals, that can be achieved with Action Handlers. Why subscribe to action immediately after its dispatching, and why subscribe to action in another component.

Used plugins: Devtools
Level: Easy

  1. One Selector for multiple Stores (in progress...)

How to process and display data from multiple stores/selectors with a single selector. The example features two stores. The first one stores complex entity objects (shop clients, as an example). The second store keeps the IDs of these entities. The example will demonstrate how to create a selector in the second store to display the list of client profiles, using the IDs from its list.

Used plugins: Devtools
Level: Easy

  1. One Store for multiple browser tabs (in progress...)

Document printing using a new tab. Implements a lazy loading module and the Storage-plugin for data transfer.

Used plugins: Storage + Devtools
Level: Medium

  1. Chain of Actions and filter + sort in Selectors (in progress...)

An example of an e-shop CMS will show how to combine several server requests into a single frontend state model. The example will include two caching stores for dictionaries of clients and goods, and another store with orders. It will demonstrates using a chain of actions and requests.

Used plugins: Forms + Storage + Devtools + Logger
Level: Advanced

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