New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

Neuro

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Neuro

A MVC written with MooTools.

  • 0.1.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
12
increased by200%
Maintainers
1
Weekly downloads
 
Created
Source

Neuro

A MooTools client-side MVC.

Version: 0.1.3 (Alpha)

Influences:

  • Backbone
  • Shipyard

Dependencies:

Focus:

  • uncoupled coding but allow for a coupled organization if necessary
  • provide base for applications

Usage

Model

Subclass Model with MooTools Class.

var HumanModel = new Class({
    Extends: Neuro.Model
    // Set the default data
    _data: {
        firstName: ''
        ,lastName: ''
        ,hp: 10
        ,max: 100
        ,lvl: 1
        // You can set a function as a custom getter. "this" will be _data, not the model itself.
        ,name: function(){
            return this.firstName + ' ' + this.lastName;
        }
    }
});

Create a model instance

var bruceLee = new HumanModel({
    firstName: 'Bruce'
    ,lastName: 'Lee'
    ,hp: 1000
    ,lvl: 99
});

bruceLee.get('name'); // 'Bruce Lee'
bruceLee.get('lvl'); // 99
bruceLee.set('lvl', 100).get('lvl'); // 100

Collection

Subclass Collection with MooTools Class.

var Humans = new Class({
    Extends: Neuro.Collection

    ,Model: HumanModel
});

Add data to the collection

// Add one dataset to the collection
Humans.add({
    firstName: 'Chuck'
    ,lastName: 'Norris'
    ,hp: 1000
});

// Add multiple datasets to the collection
Humans.add({
    firstName: 'Kareem Abdul'
    ,lastName: 'Jabbar'
    ,hp: 1000
    ,lvl: 80
}, {
    firstName: 'Gary'
    ,lastName: 'Elms'
    ,hp: 800
    ,lvl: 81
});

// Add a model instance
Humans.add(bruceLee);

Get a model from the collection by index

Humans.get(4); // bruceLee model

Remove a model from the collection

var garyElms = Humans.get(3); // Gary Elms model
Humans.remove(garyElms);

// Check if the removed model still exists in the collection
Humans.hasModel(garyElms); // false

ToDo

  • Add a builder
  • Add a Router mechanism
  • Add a Sync mechanism

Keywords

FAQs

Package last updated on 28 Jun 2012

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc