Socket
Socket
Sign inDemoInstall

mootools

Package Overview
Dependencies
0
Maintainers
5
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    mootools

MooTools 1.5.2 Server library


Version published
Weekly downloads
1K
decreased by-30.89%
Maintainers
5
Install size
27.0 kB
Created
Weekly downloads
 

Readme

Source

MooTools 1.5.2 Server

For more information about mootools in general I suggest you visit http://mootools.net In short it is a library for web development, with support for OOP.

Mootools Server is a stripped down version that gives you all the nice things from the mootools library, sans the browser-specific stuff

Installation

  • Get Node
  • run npm install mootools
  • Done

Usage

Calling require('mootools') will import it into the global scope, and you'll be able to do things like

var Application = new Class(
{
    Implements: [process.EventEmitter],
    initialize: function()
    {
        //initialize here
    },
    compute: function()
    {
        //some code
        this.emit("done");
    }
});

var app = new Application();
app.on("done", function() { /* Callback */ });
app.compute();

You can also use other things that mootools provides, like Options and Events (mootools events might not be as efficient as the native EventEmitter stuff)

Keywords

FAQs

Last updated on 20 Sep 2015

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc