Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

thorax-inspector

Package Overview
Dependencies
Maintainers
2
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

thorax-inspector

thorax-inspector-backend ========================

  • 0.2.8
  • latest
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

thorax-inspector-backend

Node backend to open files for the thorax-inspector Chrome plugin.

Grunt Usage

npm install thorax-inspector

In your Gruntfile.js:

grunt.loadNpmTasks('thorax-inspector');

grunt.initConfig({
  thorax: {
    inspector: {
      background: true,
      editor: "subl",
      paths: {
        views: "./js/views",
        models: "./js/models",
        collections: "./js/collections"
      }
    }
  }
});

If background is set to true it is assumed that another async tasks such as a server or a watch task will be started. If the inspector is the only async task set background: false.

Standalone Usage

sudo npm install -g thorax-inspector
cd your_project
thorax-inspector optional-config.json &

The optional configuration file may contain:

{
  "editor": "subl",
  "paths": {
    "views": "./js/views",
    "models": "./js/models",
    "collections": "./js/collections"
  }
}

The "editor" must be a command that can be run from your shell.

FAQs

Package last updated on 23 Dec 2013

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