0.1.6 • Published 7 years ago

monkkey v0.1.6

Weekly downloads
1
License
Unlicense
Repository
-
Last release
7 years ago

Command line 'monkkey'

Allow to compile and push Monkkey projects to a remote server.

Installation

As a global program

npm install -g monkkey

Then, you can call it with :

monkkey <commands...>

As a local dependency

npm install monkkey

Then, you can call it with :

(windows)$ node_modules/monkkey/monkkey <commands...>
   (*nux)$ ./node_modules/monkkey/monkkey <commands...>

You can include it to your javascript projects with :

var monkkey = require('monkkey');

Usage

Command line

CommandDescription
help / --help / -hDisplay some help
updateCompile and push the result to the server
checkCheck if the files are valid
run \Run a macro in the local configuration file
publish \ \Publish the tar+gzip files to the remote server
compile \Compile the folders into tar+gzip files
adduserCreate a new user on the remote server
connect \Connect to an existing user account
disconnectDisconnect from the session (destroy it on the server)

From javascript

var monkkey = require('monkkey');

monkey.<command>(<args>);
FunctionDescription
update(options: Object)compile + publish
publish(url: String, filePath: String, options: Object)Publish a compiled file to a remote server
compile(folders: Array, options: Object)check + Compile the current folder or the specified folders
connect(username, password, url, callback)Connect to an existing user account
disconnect(url, session, callback)Disconnect from the session (destroy it on the server)
create(username, password, email, url, callback)Create a new user on the remote server
getUser(url, session, callback)Get the user associated with the specified session

Compile(folders: Array, options: Object) : void

Compile a folder into a Monkkey executable file.

Behind the scene, it :

  • reads and check the monkkey.json file of the folder
  • check if all files registered exist
  • gather required files
  • compress them into a tar+gzip file

The gathering and the compression are made in a temporary folder.

var options = {
    start: (info) => console.log(' [ ] ' + info.folder + ' : Compressing...'),
    success: (info) => {
        console.log(' [o] ' + info.folder + ' : Files compressed at :');
        console.log('     ' + info.destination);
    },
    error: (e, info) => console.error(' [!] ' + info.folder + ' : An error occured : ' + e)
};

// Compile the current folder :
monkkey.compile(options);

// Compile the specified folders :
monkkey.compile([
    'exo1', 'exo2', '/home/user/exo3', //...
], options);

Publish(url: String, filePath: String, options: Object) : void

Publish a file to the remote server.

Behind the scene it :

  • doesn't check the content of the file
  • send the compressed files to the server
monkkey.publish('http://domain/exo/4', '/home/user/exo4.tar.gz', {
    start: o => console.log(' [ ] ' + o.config.url + ' - updating...'),
    success: o => console.log(' [o] ' + o.config.url + ' - updated.'),
    error: (o, e) => console.error(' [!] ' + o.config.url + ' - error : ' + e),
});

Update(options: Object) : void

Update an exercice or a whole project and publish it to the remote server.

Behind the scene it :

  • reads and check the monkkey.json file of the folder
  • check if all files registered exist
  • gather required files
  • compress them into a tar+gzip file
  • send the compressed files to the server
monkkey.update({
    // Errors of compression / compilation
    compressionErrors: function(es)
    {
        console.error(' [!] ' + es.length + ' error(s) :');
        es.forEach(function(o) {
            console.error('     @' + o.source + ' : ' + o.error);
        });
    },
    // Push options, corresponding to the publishing to the server
    push: {
        start: o => console.log(' [ ] ' + o.config.url + ' - updating...'),
        success: o => console.log(' [o] ' + o.config.url + ' - updated.'),
        error: (o, e) => console.error(' [!] ' + o.config.url + ' - error : ' + e),
    }
});

// Light version
monkkey.update(function(o, error) {
    if(error)
        console.error(error);
    else
        console.log(o);
});

Short road-map

  • Complete the README.md file
  • Check user management
    • Check user addition
    • Check user connection
    • Check user disconnection
    • Check user rights
  • Add 'check' command : check files
  • Add 'run' command
  • Transform to TypeScript for a better maintainability
  • Add TypeScript support (local)
  • Add TypeScript support (@types)
0.1.6

7 years ago

0.1.5

7 years ago

0.1.4

7 years ago

0.1.3

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago