npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

astarisx

v0.12.0-alpha2

Published

Highly Composable MVVM Framework for React

Downloads

7

Readme

Astarisx

##Highly Composable MVVM Framework for React.

Click here for the Astarisx Website and Documentation

Build Status License

More Productive

Astarisx was inspired by React. So it feels like React. There's no need to change your coding style to suit the framework, making it easy to comprehend and quick to learn. It helps seperate concerns with an approach that is intuitive and fluid and was designed with maintainability in mind. Astarisx reduces the complexity of applying incremental enhancements as your application evolves.

Highly Composable UI Components

Astarisx View's are stateless and completely decoupled from their Owner Component, making them highly composable. Without changing a line of code, Astarisx Views can be moved anywhere within your application. A View can even be completely removed without breaking your application. Teams can work independently of one another with the confidence that their work will easily integrate into the larger application.

Single Source of Truth

State is presented to Views as a single data model. It is the Single Source of Truth (SSoT). The SSoT is the Application's Data Context and is accessible from anywhere within the application. Communicating between components is no longer an issue, as every component has knowledge of the entire Application's state at any one time. You are guaranteed to have the latest copy of the Application's state when and where you need it.

Built in PushState Router

Astarisx comes with an optional pushState router out of the box and reduces the complexity in integrating client-side pushState routing into your application. Routing configuration and logic is moved out of the View and into the Business Logic Layer where it belongs. Astarisx uses Page, a micro client-side router inspired by the Express router, written by TJ Holowaychuk the creator of Express, amongst other things.

MediaQueryList Notifications

Astarisx is able to receive MediaQueryList Notifications within JavaScript. So as screen size or orientation changes, the application can be notified and respond to it from within your JavaScript code. This may be handy, for example, if you would like to make an ajax request based on a screen's orientation. You could even do some, or all, of your Responsive Design in JavaScript rather than in CSS.

Accelerated Animation

Easily incorporate super smooth page transitions into your application with AstarisxAnimate mixin. AstarisxAnimate uses Velocity, an accelerated JavaScript animation library. Use pre-defined transitions or create your own. Harness the full potential of Velocity to add some flare to your application.

Example Code

Create your Model

/* todo.js */
var Todo = Astarisx.createModelClass({
  description: {
    get: function(){
      return this.$state.description;
    }
  }
});

Create your ViewModel

/* todos.js */
var TodoModel = require("../models/todo");

// Model Constructor
var Todo = function(){
  return new TodoModel().apply(this, arguments);
};

var TodosViewModel = Astarisx.createViewModelClass({
  todosList: {
    kind: 'array',
    get: function(){
      return this.$state.todosList;
    }
  },

  addTodo: function(){
    var newTodo = new Todo({
      description: this.currentDescription
    });
    var next = this.$state.todosList.concat(newTodo);
    this.setState({
      todosList: next,
      currentDescription: ""
    });
  },

  currentDescription: {
    get: function(){
      return this.$state.currentDescription;
    },
    set: function(newVal){
      this.setState({
        currentDescription: newVal
      });
    }
  }
});

Create a ControllerViewModel

/* controllerViewModel.js */
var CVM = Astarisx.createCVMClass({
  //Specify a ViewModel's dataContext
  //This is referenced from the View
  todos: {
    viewModel: require('./todos'),
    get: function(){
      return this.$state.todos;
    }
  }
});

Build your View Components in React

var TodoList = React.createClass({
  //Make component an Astarisx view
  mixins: [Astarisx.mixin.view],
  render: function(){
    /*
      No props are passed in.
      All state is stored
      in this.state.appContext
    */
    // reference the todos data context
    var todos = this.state.appContext.todos;
    var list = todos.todosList.map(function(todo){
      return <li>{todo.description}</li>;
    });
    return <ul>{list}</ul>;
  }
});

var cvm = require('../viewModels/controllerViewModel');
var UI = React.createClass({
  //Make component an Astarisx UI
  mixins: [Astarisx.mixin.ui],
  componentWillMount: function(){
    /*
      Reference the ControllerViewModel
      and initialize AppContext
    */
    this.initializeAppContext({ 
      controllerViewModel: cvm
    });
  },
  addTodo: function(e){
    e.preventDefault();
    //Invoke action on dataContext
    this.state.appContext.todos.addTodo();
  },
  updateDescription: function(e){
    /*
      Assign value to currentDescription
      defined in the todos dataContext.
      This would usually be a field
      in a Model. We're doing this here
      to keep the demo simple.
    */
    var todos = this.state.appContext.todos;
    todos.currentDescription = e.target.value;
  },
  render: function(){
    //reference the todos dataContext
    var todos = this.state.appContext.todos;
    return (<form>
      <fieldset>
        <label htmlFor="task">TODO</label>
        <input ref="inputFld" 
        id="task" 
        type="text" 
        placeholder="Enter Task"
        onChange={this.updateDescription}
        value={todos.currentDescription} />
        <button
        onClick={this.addTodo}>Add</button>
      </fieldset>
      {/* 
        No props are passed
        to the TodoList component
      */}
      <TodoList />
    </form>);
  }
});

Usage

Astarisx can be loaded as:

  • standalone. Astarisx is exposed as a global variable
 <script src="astarisx.min.js"></script>
  • a Node.js module
$ npm install astarisx
  • a Bower module
$ bower install astarisx
  • a RequireJS module
require(['./astarisx.min.js'], function (Astarisx) {
    // Do something with Astarisx
});

Astarisx Website and Documentation

Author

Frank Panetta - Follow @fattenap

##License ###The MIT License (MIT)

Copyright (c) 2014-2015 Entrendipity Pty Ltd

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.