Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 534 Bytes

README.md

File metadata and controls

29 lines (22 loc) · 534 Bytes

Blue Screen of Death

Make sure you hit F11 for a more fulfilling blue screen of death experience!

To run it stand-alone just do

$ git clone https://github.com/AndreZSanchez/BlueScreenOfDeath.git
$ cd BlueScreenOfDeath
$ node server.js

Integrate it into your Express app!

Run

$ npm install --save bluescreenofdeath

eg

var express = require('express')
var bluescreen = require('bluescreenofdeath')

app = express()
app.use('/bluescreen', bluescreen())

app.listen(80)