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

commode

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

commode

Electron-Vue based, iTunes like UI, for file tagging, restructuring, processing, and general management.

  • 1.4.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
9
decreased by-65.38%
Maintainers
1
Weekly downloads
 
Created
Source

commode

Electron-Vue based, iTunes like UI, for file tagging, restructuring, processing, and general management.

Theory of Operation

  • iTunes like view of your data
  • You must prepare a directory with data.js, sort.js and filter.js
  • .js before .json, program will seek a .js data file that may load json.
  • You must create data.js/on based on your own data set.

Action Handler Example (work.js)

When you hit play Promise's resolve, reject is sent to an emitter handler, simply perform your operation and call resolve();


emitter.on('example', function({app, item, name, resolve, reject }) {

  // make an indication that you are working on this item
  app.selectItem(item);

  // in this example we uppercase the name of the item...
  item.name = item.name.toUpperCase();

  setTimeout(function(){
    console.log( 'Working on %s.', name );
    // When the thing is done, call resolve...
    resolve();
  },200);


});

Todo

  • More samples
  • drop built-in filter editor (just edit filter.js)
  • maybe drop manual item editor in favor of actions?

FAQs

Package last updated on 26 Jun 2022

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