Git Product home page Git Product logo

stackspy's Introduction

StackSpy

BETA STATUS -- NOT ALL MODULES WORK

This plugin identifies what technologies comprise a web app's stack.

##Use StackSpy can be required like any other node module, and it returns an object like the example in the design section.

StackSpy can also be used as a command line tool by passing in a url:

  node stackspy.js http://example.com

Design

The main file takes in a url and returns an object of results. Should a non fatal error occur, the object will contain an error flag set to true.

For sanity: All technology names are lowercased regardless of official spelling. The ending 'js' in JavaScript technologies are dropped.

If you don't agree with this convention, we can have an empathetic feedback session where we discuss the merits of this approach, and then change nothing.

ex:

  { client: [
    { name: 'jquery', 
      found: true, 
      version: null, 
      src: 'example.com'
    },
    { name: 'backbone',
      found: true,
      version: null,
      src: 'example.com',
    }],
    server: [
    { name: 'node',
      { certainty: 0.7,
        version: X.X.XX,
        misc: {
          middleware: express,
        }
      }
    }]    
  }  

Client

The client-side technologies are identified by parsing content returned from from HTTP requests.

A request (or series of requests) are made and each request gets passed off to modules which determine if particular technologies are present client side.

Each module should expect a response object straight from an HTTP request made by the request node module.

Each module should return an object that contains the technology tested for, if that technology was found, and if so, the source url and version for that technology.

eg:

  { name: 'backbone',
    found: false,
  } 

  /** OR */
  { name: 'react',
    found: true,
    version: X.X.XX,
    source: cdnjs.com/foo/bar/react.min.js,
  }

###Server The server-side technologies are teased out by piecing together various clues, using the url of the website to interrogate the server.

Each module recieves the url against which it should work.

Each module should return an object with the technology it was checking against, the certainty it found that technology on a 0-1 scale, versioning information, and plugin/middleware information dependent on the technology.

eg:

  { name: 'rails',
    certainty: 0.1,
    version: null
  }

  /** OR */
  
  { name: 'node',
    certainty: 0.7,
    version: X.X.XX,
    misc: {
      middleware: express,
    }
  }

###Certainty The working definition of certainty is (number of clues hitting positive) / (total number of clues run for that tech).

This definition will advance as the project does.

stackspy's People

Contributors

sara-gudeman avatar erikbarzdukas avatar

Watchers

James Cloos avatar  avatar  avatar Harry Sadler avatar Lauren Janicki avatar

stackspy's Issues

Filter and return module results in main program

Want to wait for modules to finish running, then return their results conditionally.

This probably includes promisifying invocation of modules.
Also this requires basic logic in client.js and server.js

More command line options

This is a nice to have, but it would be cool to redirect the output depending on flags.

Ex:
cli: --db //
sig: ...output=db,... // Both redirect output to DB

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.