0.7.4 • Published 7 years ago

sulu v0.7.4

Weekly downloads
71
License
-
Repository
github
Last release
7 years ago

SULU SULU

A </hackable> [package-driven] File Manager {CROSS_PLATFORM}

Massachusetts Institute of Technology (MIT) Discord Channel Dependency Status devDependency Status Codacy Badge Donate

Installation

  • One Click Install
    • Recommended way is to download and execute precompiled applications for different operating systems from latest releases. After that update the packages. Done. If your operating system is not in List you can build your own release. Open the package.json and checkout the script build-windows to learn how create a build job for your os. Currently we use electron-builder but there are tons of other build tools online. We like Pull Requests when you resolve a build for your OS!
  • If you like to hack the SULU codes we recommend the Contributing Docs

Packages

Since SULU is a package driven application there exists a command line shell tool called sulu-core. It aims to manage the SULU system configuration which also containts the topic package management.

Packagemanager

You can install the SULU package manager with npm. To make it available on your machine you need to install Node.js® first.

$ npm install -g sulu-core

Packagemanager usage

Currently a typical update process is:

$ sulu-core outdated # list available updates
$ sulu-core update # update all packages
# press ctrl+f5 to refresh SULU application

More commands:

$ sulu-core list # list installed packages
$ sulu-core install @npmpackage # install package
$ sulu-core uninstall @npmpackage # uninstall package
# sulu-core <npm-command-line-arguments>

For more Details see the sulu-core project page.

Contributing

If you like to fix or improve SULU or create your own package for SULU read the Contributing Docs first.

Write your own package

  1. Create a simple node module in the app node_modules folder with the following structure.
var remote = require('electron').remote;

var Command = function  () {
	return this;
};

Command.prototype.toggleDevTools = function toggleDevTools() {

	remote.getCurrentWindow().toggleDevTools();
	return false
};

var Plugin = function devTools(client) {
	this.command = new Command();
	client.app.registerHotKey("f12", this.command.toggleDevTools);
};

module.exports = Plugin;
  1. Create a valid package.json with a property "suluPackage": true.

More to read

More docs

License

This project is MIT Licensed

0.7.4

7 years ago

0.6.3

7 years ago

0.6.2

7 years ago

0.6.1

7 years ago

0.2.1

7 years ago

0.1.50

7 years ago

0.1.49

7 years ago

0.1.47

7 years ago

0.1.46

7 years ago

0.1.45

7 years ago

0.0.17

7 years ago

0.0.16

7 years ago

0.0.15

7 years ago

0.0.14

7 years ago

0.0.13

7 years ago