Code Monkey home page Code Monkey logo

sulu's Introduction

SULU SULU

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

Massachusetts Institute of Technology (MIT) Slack Channels 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

sulu's People

Contributors

a-rose avatar notslang avatar s-a avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.