agar.io-clone icon indicating copy to clipboard operation
agar.io-clone copied to clipboard

Platform-specific Installers

Open abalabahaha opened this issue 9 years ago • 8 comments

For people who don't know how to install node applications .exe package for windows Install scripts for Linux/Mac

abalabahaha avatar Jul 21 '15 04:07 abalabahaha

I'm not really familiar with writing those, anyone willing to help? Shouldn't be too hard.

igorantun avatar Jul 21 '15 23:07 igorantun

I suppose I could do a script for Debian-based systems, but I put this out there in case there were any people with actual Linux admin experience who wanted to give it a shot.

abalabahaha avatar Jul 21 '15 23:07 abalabahaha

why not a docker based one?

antonpiatek avatar Jul 28 '15 11:07 antonpiatek

@antonpiatek That would be awesome as well, are you interested in making one?

igorantun avatar Jul 28 '15 21:07 igorantun

FPM is your friend.

jjshoe avatar Jul 31 '15 19:07 jjshoe

Well this isn't really a full on app, and it only needs a bash script with less than 10 lines, so FPM isn't that necessary. But interesting find.

abalabahaha avatar Aug 01 '15 19:08 abalabahaha

FPM takes a single command to build all the things, it's really quite trivial.

jjshoe avatar Aug 06 '15 15:08 jjshoe

I've created a Windows installer. For making a Windows installer you have to follow the following steps:

First install NSIS Unicode, Git and Node.js. Then clone the es6-refactor branch of this repository with git clone -b es6-refactor https://github.com/huytd/agar.io-clone.git (I haven't get it working with the master branch). In server/index.js remove every import containing webpack, remove the const isDeveloping and replace

if (isDeveloping) {
  const compiler = webpack(config);
  const middleware = webpackMiddleware(compiler, {
    publicPath: config.output.publicPath,
    contentBase: 'src',
    stats: {
      colors: true,
      hash: false,
      timings: true,
      chunks: false,
      chunkModules: false,
      modules: false
    }
  });

  app.use(middleware);
  app.use(webpackHotMiddleware(compiler));
}

with app.use(express.static('dist'));. After that you can run the following commands:

npm install
mkdir build
node node_modules\babel-cli\bin\babel.js server --out-dir build\server
node node_modules\webpack\bin\webpack.js --config webpack.config.js --progress
cp -r dist build\dist
cp config.json build\config.json

Then download the Node.js standalone executable to the build folder. In the build folder create a file called package.json with {"dependencies":{"simple-quadtree":"^0.1.3","socket.io":"^1.4.5","express":"^4.13.3","sat":"^0.5.0"}} as content. You must also create a file called start.bat with node.exe server\index.js as content. Then run npm install in the build directory. Now you can create a installer.nsi file with the following content (which is just a simple installer created with the HM NIS Edit wizard):

; Script generated by the HM NIS Edit Script Wizard.

; HM NIS Edit Wizard helper defines
!define PRODUCT_NAME "agar.io-clone"
!define PRODUCT_VERSION "1.0"
!define PRODUCT_PUBLISHER "huytd"
!define PRODUCT_WEB_SITE "https://github.com/huytd/agar.io-clone"
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\node.exe"
!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
!define PRODUCT_UNINST_ROOT_KEY "HKLM"

SetCompressor lzma

; MUI 1.67 compatible ------
!include "MUI.nsh"

; MUI Settings
!define MUI_ABORTWARNING
!define MUI_ICON "${NSISDIR}\Contrib\Graphics\Icons\modern-install.ico"
!define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall.ico"

; Welcome page
!insertmacro MUI_PAGE_WELCOME
; License page
!define MUI_LICENSEPAGE_CHECKBOX
!insertmacro MUI_PAGE_LICENSE "LICENSE"
; Directory page
!insertmacro MUI_PAGE_DIRECTORY
; Instfiles page
!insertmacro MUI_PAGE_INSTFILES
; Finish page
!define MUI_FINISHPAGE_RUN "$INSTDIR\start.bat"
!insertmacro MUI_PAGE_FINISH

; Uninstaller pages
!insertmacro MUI_UNPAGE_INSTFILES

; Language files
!insertmacro MUI_LANGUAGE "English"

; Reserve files
!insertmacro MUI_RESERVEFILE_INSTALLOPTIONS

; MUI end ------

Name "${PRODUCT_NAME} ${PRODUCT_VERSION}"
OutFile "agar.io-clone.exe"
InstallDir "$PROGRAMFILES\agar.io-clone"
InstallDirRegKey HKLM "${PRODUCT_DIR_REGKEY}" ""
ShowInstDetails show
ShowUnInstDetails show

Section "MainSection" SEC01
  SetOutPath "$INSTDIR"
  SetOverwrite try
  File "build\config.json"
  SetOutPath "$INSTDIR\dist\app\audio"
  File "build\dist\app\audio\spawn.mp3"
  File "build\dist\app\audio\split.mp3"
  SetOutPath "$INSTDIR\dist\app\img"
  File "build\dist\app\img\feed.png"
  File "build\dist\app\img\grid.png"
  File "build\dist\app\img\split.png"
  File "build\dist\app\img\virus.png"
  SetOutPath "$INSTDIR\dist"
  File "build\dist\index.html"
  File "build\dist\main.js"
  SetOutPath "$INSTDIR"
  File "build\node.exe"
  SetOutPath "$INSTDIR\node_modules\.bin"
  File "build\node_modules\.bin\mime"
  File "build\node_modules\.bin\mime.cmd"
  SetOutPath "$INSTDIR\node_modules\accepts"
  File "build\node_modules\accepts\HISTORY.md"
  File "build\node_modules\accepts\index.js"
  File "build\node_modules\accepts\LICENSE"
  File "build\node_modules\accepts\package.json"
  File "build\node_modules\accepts\README.md"
  SetOutPath "$INSTDIR\node_modules\after"
  File "build\node_modules\after\.npmignore"
  File "build\node_modules\after\.travis.yml"
  File "build\node_modules\after\index.js"
  File "build\node_modules\after\LICENCE"
  File "build\node_modules\after\package.json"
  File "build\node_modules\after\README.md"
  SetOutPath "$INSTDIR\node_modules\after\test"
  File "build\node_modules\after\test\after-test.js"
  SetOutPath "$INSTDIR\node_modules\array-flatten"
  File "build\node_modules\array-flatten\array-flatten.js"
  File "build\node_modules\array-flatten\LICENSE"
  File "build\node_modules\array-flatten\package.json"
  File "build\node_modules\array-flatten\README.md"
  SetOutPath "$INSTDIR\node_modules\arraybuffer.slice"
  File "build\node_modules\arraybuffer.slice\.npmignore"
  File "build\node_modules\arraybuffer.slice\index.js"
  File "build\node_modules\arraybuffer.slice\Makefile"
  File "build\node_modules\arraybuffer.slice\package.json"
  File "build\node_modules\arraybuffer.slice\README.md"
  SetOutPath "$INSTDIR\node_modules\arraybuffer.slice\test"
  File "build\node_modules\arraybuffer.slice\test\slice-buffer.js"
  SetOutPath "$INSTDIR\node_modules\backo2"
  File "build\node_modules\backo2\.npmignore"
  File "build\node_modules\backo2\component.json"
  File "build\node_modules\backo2\History.md"
  File "build\node_modules\backo2\index.js"
  File "build\node_modules\backo2\Makefile"
  File "build\node_modules\backo2\package.json"
  File "build\node_modules\backo2\Readme.md"
  SetOutPath "$INSTDIR\node_modules\backo2\test"
  File "build\node_modules\backo2\test\index.js"
  SetOutPath "$INSTDIR\node_modules\base64-arraybuffer"
  File "build\node_modules\base64-arraybuffer\.npmignore"
  File "build\node_modules\base64-arraybuffer\.travis.yml"
  File "build\node_modules\base64-arraybuffer\grunt.js"
  SetOutPath "$INSTDIR\node_modules\base64-arraybuffer\lib"
  File "build\node_modules\base64-arraybuffer\lib\base64-arraybuffer.js"
  SetOutPath "$INSTDIR\node_modules\base64-arraybuffer"
  File "build\node_modules\base64-arraybuffer\LICENSE-MIT"
  File "build\node_modules\base64-arraybuffer\package.json"
  File "build\node_modules\base64-arraybuffer\package.json~"
  File "build\node_modules\base64-arraybuffer\README.md"
  File "build\node_modules\base64-arraybuffer\README.md~"
  SetOutPath "$INSTDIR\node_modules\base64-arraybuffer\test"
  File "build\node_modules\base64-arraybuffer\test\base64-arraybuffer_test.js"
  SetOutPath "$INSTDIR\node_modules\base64id"
  File "build\node_modules\base64id\.npmignore"
  SetOutPath "$INSTDIR\node_modules\base64id\lib"
  File "build\node_modules\base64id\lib\base64id.js"
  SetOutPath "$INSTDIR\node_modules\base64id"
  File "build\node_modules\base64id\package.json"
  File "build\node_modules\base64id\README.md"
  SetOutPath "$INSTDIR\node_modules\benchmark"
  File "build\node_modules\benchmark\benchmark.js"
  SetOutPath "$INSTDIR\node_modules\benchmark\doc"
  File "build\node_modules\benchmark\doc\README.md"
  SetOutPath "$INSTDIR\node_modules\benchmark"
  File "build\node_modules\benchmark\LICENSE.txt"
  File "build\node_modules\benchmark\package.json"
  File "build\node_modules\benchmark\README.md"
  SetOutPath "$INSTDIR\node_modules\benchmark\test"
  File "build\node_modules\benchmark\test\run-test.sh"
  File "build\node_modules\benchmark\test\test.js"
  SetOutPath "$INSTDIR\node_modules\better-assert"
  File "build\node_modules\better-assert\.npmignore"
  File "build\node_modules\better-assert\example.js"
  File "build\node_modules\better-assert\History.md"
  File "build\node_modules\better-assert\index.js"
  File "build\node_modules\better-assert\Makefile"
  File "build\node_modules\better-assert\package.json"
  File "build\node_modules\better-assert\Readme.md"
  SetOutPath "$INSTDIR\node_modules\blob"
  File "build\node_modules\blob\.npmignore"
  File "build\node_modules\blob\.zuul.yml"
  File "build\node_modules\blob\index.js"
  File "build\node_modules\blob\Makefile"
  File "build\node_modules\blob\package.json"
  File "build\node_modules\blob\README.md"
  SetOutPath "$INSTDIR\node_modules\blob\test"
  File "build\node_modules\blob\test\index.js"
  SetOutPath "$INSTDIR\node_modules\callsite"
  File "build\node_modules\callsite\.npmignore"
  File "build\node_modules\callsite\History.md"
  File "build\node_modules\callsite\index.js"
  File "build\node_modules\callsite\Makefile"
  File "build\node_modules\callsite\package.json"
  File "build\node_modules\callsite\Readme.md"
  SetOutPath "$INSTDIR\node_modules\component-bind"
  File "build\node_modules\component-bind\.npmignore"
  File "build\node_modules\component-bind\component.json"
  File "build\node_modules\component-bind\History.md"
  File "build\node_modules\component-bind\index.js"
  File "build\node_modules\component-bind\Makefile"
  File "build\node_modules\component-bind\package.json"
  File "build\node_modules\component-bind\Readme.md"
  SetOutPath "$INSTDIR\node_modules\component-emitter"
  File "build\node_modules\component-emitter\.npmignore"
  File "build\node_modules\component-emitter\.travis.yml"
  File "build\node_modules\component-emitter\bower.json"
  File "build\node_modules\component-emitter\component.json"
  File "build\node_modules\component-emitter\History.md"
  File "build\node_modules\component-emitter\index.js"
  File "build\node_modules\component-emitter\Makefile"
  File "build\node_modules\component-emitter\package.json"
  File "build\node_modules\component-emitter\Readme.md"
  SetOutPath "$INSTDIR\node_modules\component-inherit"
  File "build\node_modules\component-inherit\.npmignore"
  File "build\node_modules\component-inherit\component.json"
  File "build\node_modules\component-inherit\History.md"
  File "build\node_modules\component-inherit\index.js"
  File "build\node_modules\component-inherit\Makefile"
  File "build\node_modules\component-inherit\package.json"
  File "build\node_modules\component-inherit\Readme.md"
  SetOutPath "$INSTDIR\node_modules\component-inherit\test"
  File "build\node_modules\component-inherit\test\inherit.js"
  SetOutPath "$INSTDIR\node_modules\content-disposition"
  File "build\node_modules\content-disposition\HISTORY.md"
  File "build\node_modules\content-disposition\index.js"
  File "build\node_modules\content-disposition\LICENSE"
  File "build\node_modules\content-disposition\package.json"
  File "build\node_modules\content-disposition\README.md"
  SetOutPath "$INSTDIR\node_modules\content-type"
  File "build\node_modules\content-type\HISTORY.md"
  File "build\node_modules\content-type\index.js"
  File "build\node_modules\content-type\LICENSE"
  File "build\node_modules\content-type\package.json"
  File "build\node_modules\content-type\README.md"
  SetOutPath "$INSTDIR\node_modules\cookie"
  File "build\node_modules\cookie\HISTORY.md"
  File "build\node_modules\cookie\index.js"
  File "build\node_modules\cookie\LICENSE"
  File "build\node_modules\cookie\package.json"
  File "build\node_modules\cookie\README.md"
  SetOutPath "$INSTDIR\node_modules\cookie-signature"
  File "build\node_modules\cookie-signature\.npmignore"
  File "build\node_modules\cookie-signature\History.md"
  File "build\node_modules\cookie-signature\index.js"
  File "build\node_modules\cookie-signature\package.json"
  File "build\node_modules\cookie-signature\Readme.md"
  SetOutPath "$INSTDIR\node_modules\debug"
  File "build\node_modules\debug\.jshintrc"
  File "build\node_modules\debug\.npmignore"
  File "build\node_modules\debug\bower.json"
  File "build\node_modules\debug\browser.js"
  File "build\node_modules\debug\component.json"
  File "build\node_modules\debug\debug.js"
  File "build\node_modules\debug\History.md"
  File "build\node_modules\debug\Makefile"
  File "build\node_modules\debug\node.js"
  File "build\node_modules\debug\package.json"
  File "build\node_modules\debug\Readme.md"
  SetOutPath "$INSTDIR\node_modules\depd"
  File "build\node_modules\depd\History.md"
  File "build\node_modules\depd\index.js"
  SetOutPath "$INSTDIR\node_modules\depd\lib\browser"
  File "build\node_modules\depd\lib\browser\index.js"
  SetOutPath "$INSTDIR\node_modules\depd\lib\compat"
  File "build\node_modules\depd\lib\compat\buffer-concat.js"
  File "build\node_modules\depd\lib\compat\callsite-tostring.js"
  File "build\node_modules\depd\lib\compat\event-listener-count.js"
  File "build\node_modules\depd\lib\compat\index.js"
  SetOutPath "$INSTDIR\node_modules\depd"
  File "build\node_modules\depd\LICENSE"
  File "build\node_modules\depd\package.json"
  File "build\node_modules\depd\Readme.md"
  SetOutPath "$INSTDIR\node_modules\destroy"
  File "build\node_modules\destroy\index.js"
  File "build\node_modules\destroy\LICENSE"
  File "build\node_modules\destroy\package.json"
  File "build\node_modules\destroy\README.md"
  SetOutPath "$INSTDIR\node_modules\ee-first"
  File "build\node_modules\ee-first\index.js"
  File "build\node_modules\ee-first\LICENSE"
  File "build\node_modules\ee-first\package.json"
  File "build\node_modules\ee-first\README.md"
  SetOutPath "$INSTDIR\node_modules\engine.io"
  File "build\node_modules\engine.io\.npmignore"
  File "build\node_modules\engine.io\.travis.yml"
  File "build\node_modules\engine.io\History.md"
  File "build\node_modules\engine.io\index.js"
  SetOutPath "$INSTDIR\node_modules\engine.io\lib"
  File "build\node_modules\engine.io\lib\engine.io.js"
  File "build\node_modules\engine.io\lib\server.js"
  File "build\node_modules\engine.io\lib\socket.js"
  File "build\node_modules\engine.io\lib\transport.js"
  SetOutPath "$INSTDIR\node_modules\engine.io\lib\transports"
  File "build\node_modules\engine.io\lib\transports\index.js"
  File "build\node_modules\engine.io\lib\transports\polling-jsonp.js"
  File "build\node_modules\engine.io\lib\transports\polling-xhr.js"
  File "build\node_modules\engine.io\lib\transports\polling.js"
  File "build\node_modules\engine.io\lib\transports\websocket.js"
  SetOutPath "$INSTDIR\node_modules\engine.io"
  File "build\node_modules\engine.io\LICENSE"
  File "build\node_modules\engine.io\Makefile"
  SetOutPath "$INSTDIR\node_modules\engine.io\node_modules\accepts"
  File "build\node_modules\engine.io\node_modules\accepts\HISTORY.md"
  File "build\node_modules\engine.io\node_modules\accepts\index.js"
  File "build\node_modules\engine.io\node_modules\accepts\LICENSE"
  File "build\node_modules\engine.io\node_modules\accepts\package.json"
  File "build\node_modules\engine.io\node_modules\accepts\README.md"
  SetOutPath "$INSTDIR\node_modules\engine.io\node_modules\mime-db"
  File "build\node_modules\engine.io\node_modules\mime-db\db.json"
  File "build\node_modules\engine.io\node_modules\mime-db\HISTORY.md"
  File "build\node_modules\engine.io\node_modules\mime-db\index.js"
  File "build\node_modules\engine.io\node_modules\mime-db\LICENSE"
  File "build\node_modules\engine.io\node_modules\mime-db\package.json"
  File "build\node_modules\engine.io\node_modules\mime-db\README.md"
  SetOutPath "$INSTDIR\node_modules\engine.io\node_modules\mime-types"
  File "build\node_modules\engine.io\node_modules\mime-types\HISTORY.md"
  File "build\node_modules\engine.io\node_modules\mime-types\index.js"
  File "build\node_modules\engine.io\node_modules\mime-types\LICENSE"
  File "build\node_modules\engine.io\node_modules\mime-types\package.json"
  File "build\node_modules\engine.io\node_modules\mime-types\README.md"
  SetOutPath "$INSTDIR\node_modules\engine.io\node_modules\negotiator\lib"
  File "build\node_modules\engine.io\node_modules\negotiator\lib\charset.js"
  File "build\node_modules\engine.io\node_modules\negotiator\lib\encoding.js"
  File "build\node_modules\engine.io\node_modules\negotiator\lib\language.js"
  File "build\node_modules\engine.io\node_modules\negotiator\lib\mediaType.js"
  File "build\node_modules\engine.io\node_modules\negotiator\lib\negotiator.js"
  SetOutPath "$INSTDIR\node_modules\engine.io\node_modules\negotiator"
  File "build\node_modules\engine.io\node_modules\negotiator\LICENSE"
  File "build\node_modules\engine.io\node_modules\negotiator\package.json"
  File "build\node_modules\engine.io\node_modules\negotiator\README.md"
  SetOutPath "$INSTDIR\node_modules\engine.io"
  File "build\node_modules\engine.io\package.json"
  File "build\node_modules\engine.io\README.md"
  SetOutPath "$INSTDIR\node_modules\engine.io-client"
  File "build\node_modules\engine.io-client\.npmignore"
  File "build\node_modules\engine.io-client\.travis.yml"
  File "build\node_modules\engine.io-client\.zuul.yml"
  File "build\node_modules\engine.io-client\engine.io.js"
  File "build\node_modules\engine.io-client\History.md"
  File "build\node_modules\engine.io-client\index.js"
  SetOutPath "$INSTDIR\node_modules\engine.io-client\lib"
  File "build\node_modules\engine.io-client\lib\index.js"
  File "build\node_modules\engine.io-client\lib\socket.js"
  File "build\node_modules\engine.io-client\lib\transport.js"
  SetOutPath "$INSTDIR\node_modules\engine.io-client\lib\transports"
  File "build\node_modules\engine.io-client\lib\transports\index.js"
  File "build\node_modules\engine.io-client\lib\transports\polling-jsonp.js"
  File "build\node_modules\engine.io-client\lib\transports\polling-xhr.js"
  File "build\node_modules\engine.io-client\lib\transports\polling.js"
  File "build\node_modules\engine.io-client\lib\transports\websocket.js"
  SetOutPath "$INSTDIR\node_modules\engine.io-client\lib"
  File "build\node_modules\engine.io-client\lib\xmlhttprequest.js"
  SetOutPath "$INSTDIR\node_modules\engine.io-client"
  File "build\node_modules\engine.io-client\LICENSE"
  File "build\node_modules\engine.io-client\Makefile"
  File "build\node_modules\engine.io-client\package.json"
  File "build\node_modules\engine.io-client\README.md"
  SetOutPath "$INSTDIR\node_modules\engine.io-parser"
  File "build\node_modules\engine.io-parser\.npmignore"
  File "build\node_modules\engine.io-parser\.travis.yml"
  File "build\node_modules\engine.io-parser\.zuul.yml"
  File "build\node_modules\engine.io-parser\History.md"
  File "build\node_modules\engine.io-parser\index.js"
  SetOutPath "$INSTDIR\node_modules\engine.io-parser\lib"
  File "build\node_modules\engine.io-parser\lib\browser.js"
  File "build\node_modules\engine.io-parser\lib\index.js"
  File "build\node_modules\engine.io-parser\lib\keys.js"
  SetOutPath "$INSTDIR\node_modules\engine.io-parser"
  File "build\node_modules\engine.io-parser\LICENSE"
  File "build\node_modules\engine.io-parser\Makefile"
  SetOutPath "$INSTDIR\node_modules\engine.io-parser\node_modules\has-binary"
  File "build\node_modules\engine.io-parser\node_modules\has-binary\.npmignore"
  SetOutPath "$INSTDIR\node_modules\engine.io-parser\node_modules\has-binary\fixtures"
  File "build\node_modules\engine.io-parser\node_modules\has-binary\fixtures\big.json"
  SetOutPath "$INSTDIR\node_modules\engine.io-parser\node_modules\has-binary"
  File "build\node_modules\engine.io-parser\node_modules\has-binary\History.md"
  File "build\node_modules\engine.io-parser\node_modules\has-binary\index.js"
  File "build\node_modules\engine.io-parser\node_modules\has-binary\LICENSE"
  File "build\node_modules\engine.io-parser\node_modules\has-binary\Makefile"
  File "build\node_modules\engine.io-parser\node_modules\has-binary\package.json"
  File "build\node_modules\engine.io-parser\node_modules\has-binary\README.md"
  File "build\node_modules\engine.io-parser\node_modules\has-binary\test.js"
  SetOutPath "$INSTDIR\node_modules\engine.io-parser"
  File "build\node_modules\engine.io-parser\package.json"
  File "build\node_modules\engine.io-parser\Readme.md"
  SetOutPath "$INSTDIR\node_modules\escape-html"
  File "build\node_modules\escape-html\index.js"
  File "build\node_modules\escape-html\LICENSE"
  File "build\node_modules\escape-html\package.json"
  File "build\node_modules\escape-html\Readme.md"
  SetOutPath "$INSTDIR\node_modules\etag"
  File "build\node_modules\etag\HISTORY.md"
  File "build\node_modules\etag\index.js"
  File "build\node_modules\etag\LICENSE"
  File "build\node_modules\etag\package.json"
  File "build\node_modules\etag\README.md"
  SetOutPath "$INSTDIR\node_modules\express"
  File "build\node_modules\express\History.md"
  File "build\node_modules\express\index.js"
  SetOutPath "$INSTDIR\node_modules\express\lib"
  File "build\node_modules\express\lib\application.js"
  File "build\node_modules\express\lib\express.js"
  SetOutPath "$INSTDIR\node_modules\express\lib\middleware"
  File "build\node_modules\express\lib\middleware\init.js"
  File "build\node_modules\express\lib\middleware\query.js"
  SetOutPath "$INSTDIR\node_modules\express\lib"
  File "build\node_modules\express\lib\request.js"
  File "build\node_modules\express\lib\response.js"
  SetOutPath "$INSTDIR\node_modules\express\lib\router"
  File "build\node_modules\express\lib\router\index.js"
  File "build\node_modules\express\lib\router\layer.js"
  File "build\node_modules\express\lib\router\route.js"
  SetOutPath "$INSTDIR\node_modules\express\lib"
  File "build\node_modules\express\lib\utils.js"
  File "build\node_modules\express\lib\view.js"
  SetOutPath "$INSTDIR\node_modules\express"
  File "build\node_modules\express\LICENSE"
  File "build\node_modules\express\package.json"
  File "build\node_modules\express\Readme.md"
  SetOutPath "$INSTDIR\node_modules\finalhandler"
  File "build\node_modules\finalhandler\HISTORY.md"
  File "build\node_modules\finalhandler\index.js"
  File "build\node_modules\finalhandler\LICENSE"
  File "build\node_modules\finalhandler\package.json"
  File "build\node_modules\finalhandler\README.md"
  SetOutPath "$INSTDIR\node_modules\forwarded"
  File "build\node_modules\forwarded\HISTORY.md"
  File "build\node_modules\forwarded\index.js"
  File "build\node_modules\forwarded\LICENSE"
  File "build\node_modules\forwarded\package.json"
  File "build\node_modules\forwarded\README.md"
  SetOutPath "$INSTDIR\node_modules\fresh"
  File "build\node_modules\fresh\HISTORY.md"
  File "build\node_modules\fresh\index.js"
  File "build\node_modules\fresh\LICENSE"
  File "build\node_modules\fresh\package.json"
  File "build\node_modules\fresh\README.md"
  SetOutPath "$INSTDIR\node_modules\has-binary"
  File "build\node_modules\has-binary\.npmignore"
  File "build\node_modules\has-binary\History.md"
  File "build\node_modules\has-binary\index.js"
  File "build\node_modules\has-binary\LICENSE"
  File "build\node_modules\has-binary\Makefile"
  File "build\node_modules\has-binary\package.json"
  File "build\node_modules\has-binary\README.md"
  File "build\node_modules\has-binary\test.js"
  SetOutPath "$INSTDIR\node_modules\has-cors"
  File "build\node_modules\has-cors\.npmignore"
  File "build\node_modules\has-cors\component.json"
  File "build\node_modules\has-cors\History.md"
  File "build\node_modules\has-cors\index.js"
  File "build\node_modules\has-cors\Makefile"
  File "build\node_modules\has-cors\package.json"
  File "build\node_modules\has-cors\Readme.md"
  File "build\node_modules\has-cors\test.js"
  SetOutPath "$INSTDIR\node_modules\http-errors"
  File "build\node_modules\http-errors\HISTORY.md"
  File "build\node_modules\http-errors\index.js"
  File "build\node_modules\http-errors\LICENSE"
  File "build\node_modules\http-errors\package.json"
  File "build\node_modules\http-errors\README.md"
  SetOutPath "$INSTDIR\node_modules\indexof"
  File "build\node_modules\indexof\.npmignore"
  File "build\node_modules\indexof\component.json"
  File "build\node_modules\indexof\index.js"
  File "build\node_modules\indexof\Makefile"
  File "build\node_modules\indexof\package.json"
  File "build\node_modules\indexof\Readme.md"
  SetOutPath "$INSTDIR\node_modules\inherits"
  File "build\node_modules\inherits\inherits.js"
  File "build\node_modules\inherits\inherits_browser.js"
  File "build\node_modules\inherits\LICENSE"
  File "build\node_modules\inherits\package.json"
  File "build\node_modules\inherits\README.md"
  File "build\node_modules\inherits\test.js"
  SetOutPath "$INSTDIR\node_modules\ipaddr.js"
  File "build\node_modules\ipaddr.js\.npmignore"
  File "build\node_modules\ipaddr.js\.travis.yml"
  File "build\node_modules\ipaddr.js\bower.json"
  File "build\node_modules\ipaddr.js\Cakefile"
  File "build\node_modules\ipaddr.js\ipaddr.min.js"
  SetOutPath "$INSTDIR\node_modules\ipaddr.js\lib"
  File "build\node_modules\ipaddr.js\lib\ipaddr.js"
  SetOutPath "$INSTDIR\node_modules\ipaddr.js"
  File "build\node_modules\ipaddr.js\LICENSE"
  File "build\node_modules\ipaddr.js\package.json"
  File "build\node_modules\ipaddr.js\README.md"
  SetOutPath "$INSTDIR\node_modules\ipaddr.js\src"
  File "build\node_modules\ipaddr.js\src\ipaddr.coffee"
  SetOutPath "$INSTDIR\node_modules\ipaddr.js\test"
  File "build\node_modules\ipaddr.js\test\ipaddr.test.coffee"
  SetOutPath "$INSTDIR\node_modules\isarray\build"
  File "build\node_modules\isarray\build\build.js"
  SetOutPath "$INSTDIR\node_modules\isarray"
  File "build\node_modules\isarray\component.json"
  File "build\node_modules\isarray\index.js"
  File "build\node_modules\isarray\package.json"
  File "build\node_modules\isarray\README.md"
  SetOutPath "$INSTDIR\node_modules\json3"
  File "build\node_modules\json3\.gitmodules"
  File "build\node_modules\json3\.jamignore"
  File "build\node_modules\json3\.npmignore"
  File "build\node_modules\json3\.travis.yml"
  SetOutPath "$INSTDIR\node_modules\json3\coverage"
  File "build\node_modules\json3\coverage\coverage.json"
  SetOutPath "$INSTDIR\node_modules\json3\coverage\lcov-report\lib"
  File "build\node_modules\json3\coverage\lcov-report\lib\json3.js.html"
  SetOutPath "$INSTDIR\node_modules\json3\coverage\lcov-report"
  File "build\node_modules\json3\coverage\lcov-report\prettify.css"
  File "build\node_modules\json3\coverage\lcov-report\prettify.js"
  SetOutPath "$INSTDIR\node_modules\json3\coverage"
  File "build\node_modules\json3\coverage\lcov.info"
  SetOutPath "$INSTDIR\node_modules\json3\lib"
  File "build\node_modules\json3\lib\json3.js"
  File "build\node_modules\json3\lib\json3.min.js"
  SetOutPath "$INSTDIR\node_modules\json3"
  File "build\node_modules\json3\LICENSE"
  File "build\node_modules\json3\package.json"
  File "build\node_modules\json3\README.md"
  SetOutPath "$INSTDIR\node_modules\media-typer"
  File "build\node_modules\media-typer\HISTORY.md"
  File "build\node_modules\media-typer\index.js"
  File "build\node_modules\media-typer\LICENSE"
  File "build\node_modules\media-typer\package.json"
  File "build\node_modules\media-typer\README.md"
  SetOutPath "$INSTDIR\node_modules\merge-descriptors"
  File "build\node_modules\merge-descriptors\HISTORY.md"
  File "build\node_modules\merge-descriptors\index.js"
  File "build\node_modules\merge-descriptors\LICENSE"
  File "build\node_modules\merge-descriptors\package.json"
  File "build\node_modules\merge-descriptors\README.md"
  SetOutPath "$INSTDIR\node_modules\methods"
  File "build\node_modules\methods\HISTORY.md"
  File "build\node_modules\methods\index.js"
  File "build\node_modules\methods\LICENSE"
  File "build\node_modules\methods\package.json"
  File "build\node_modules\methods\README.md"
  SetOutPath "$INSTDIR\node_modules\mime"
  File "build\node_modules\mime\.npmignore"
  SetOutPath "$INSTDIR\node_modules\mime\build"
  File "build\node_modules\mime\build\build.js"
  File "build\node_modules\mime\build\test.js"
  SetOutPath "$INSTDIR\node_modules\mime"
  File "build\node_modules\mime\cli.js"
  File "build\node_modules\mime\LICENSE"
  File "build\node_modules\mime\mime.js"
  File "build\node_modules\mime\package.json"
  File "build\node_modules\mime\README.md"
  File "build\node_modules\mime\types.json"
  SetOutPath "$INSTDIR\node_modules\mime-db"
  File "build\node_modules\mime-db\db.json"
  File "build\node_modules\mime-db\HISTORY.md"
  File "build\node_modules\mime-db\index.js"
  File "build\node_modules\mime-db\LICENSE"
  File "build\node_modules\mime-db\package.json"
  File "build\node_modules\mime-db\README.md"
  SetOutPath "$INSTDIR\node_modules\mime-types"
  File "build\node_modules\mime-types\HISTORY.md"
  File "build\node_modules\mime-types\index.js"
  File "build\node_modules\mime-types\LICENSE"
  File "build\node_modules\mime-types\package.json"
  File "build\node_modules\mime-types\README.md"
  SetOutPath "$INSTDIR\node_modules\ms"
  File "build\node_modules\ms\.npmignore"
  File "build\node_modules\ms\History.md"
  File "build\node_modules\ms\index.js"
  File "build\node_modules\ms\LICENSE"
  File "build\node_modules\ms\package.json"
  File "build\node_modules\ms\README.md"
  SetOutPath "$INSTDIR\node_modules\negotiator"
  File "build\node_modules\negotiator\HISTORY.md"
  File "build\node_modules\negotiator\index.js"
  SetOutPath "$INSTDIR\node_modules\negotiator\lib"
  File "build\node_modules\negotiator\lib\charset.js"
  File "build\node_modules\negotiator\lib\encoding.js"
  File "build\node_modules\negotiator\lib\language.js"
  File "build\node_modules\negotiator\lib\mediaType.js"
  SetOutPath "$INSTDIR\node_modules\negotiator"
  File "build\node_modules\negotiator\LICENSE"
  File "build\node_modules\negotiator\package.json"
  File "build\node_modules\negotiator\README.md"
  SetOutPath "$INSTDIR\node_modules\object-component"
  File "build\node_modules\object-component\.npmignore"
  File "build\node_modules\object-component\component.json"
  File "build\node_modules\object-component\History.md"
  File "build\node_modules\object-component\index.js"
  File "build\node_modules\object-component\Makefile"
  File "build\node_modules\object-component\package.json"
  File "build\node_modules\object-component\Readme.md"
  SetOutPath "$INSTDIR\node_modules\object-component\test"
  File "build\node_modules\object-component\test\object.js"
  SetOutPath "$INSTDIR\node_modules\on-finished"
  File "build\node_modules\on-finished\HISTORY.md"
  File "build\node_modules\on-finished\index.js"
  File "build\node_modules\on-finished\LICENSE"
  File "build\node_modules\on-finished\package.json"
  File "build\node_modules\on-finished\README.md"
  SetOutPath "$INSTDIR\node_modules\options"
  File "build\node_modules\options\.npmignore"
  SetOutPath "$INSTDIR\node_modules\options\lib"
  File "build\node_modules\options\lib\options.js"
  SetOutPath "$INSTDIR\node_modules\options"
  File "build\node_modules\options\Makefile"
  File "build\node_modules\options\package.json"
  File "build\node_modules\options\README.md"
  SetOutPath "$INSTDIR\node_modules\parsejson"
  File "build\node_modules\parsejson\index.js"
  File "build\node_modules\parsejson\Makefile"
  File "build\node_modules\parsejson\package.json"
  File "build\node_modules\parsejson\test.js"
  SetOutPath "$INSTDIR\node_modules\parseqs"
  File "build\node_modules\parseqs\index.js"
  File "build\node_modules\parseqs\Makefile"
  File "build\node_modules\parseqs\package.json"
  File "build\node_modules\parseqs\test.js"
  SetOutPath "$INSTDIR\node_modules\parseuri"
  File "build\node_modules\parseuri\History.md"
  File "build\node_modules\parseuri\index.js"
  File "build\node_modules\parseuri\Makefile"
  File "build\node_modules\parseuri\package.json"
  File "build\node_modules\parseuri\test.js"
  SetOutPath "$INSTDIR\node_modules\parseurl"
  File "build\node_modules\parseurl\HISTORY.md"
  File "build\node_modules\parseurl\index.js"
  File "build\node_modules\parseurl\LICENSE"
  File "build\node_modules\parseurl\package.json"
  File "build\node_modules\parseurl\README.md"
  SetOutPath "$INSTDIR\node_modules\path-to-regexp"
  File "build\node_modules\path-to-regexp\History.md"
  File "build\node_modules\path-to-regexp\index.js"
  File "build\node_modules\path-to-regexp\LICENSE"
  File "build\node_modules\path-to-regexp\package.json"
  File "build\node_modules\path-to-regexp\Readme.md"
  SetOutPath "$INSTDIR\node_modules\proxy-addr"
  File "build\node_modules\proxy-addr\HISTORY.md"
  File "build\node_modules\proxy-addr\index.js"
  File "build\node_modules\proxy-addr\LICENSE"
  File "build\node_modules\proxy-addr\package.json"
  File "build\node_modules\proxy-addr\README.md"
  SetOutPath "$INSTDIR\node_modules\qs"
  File "build\node_modules\qs\.eslintignore"
  File "build\node_modules\qs\.npmignore"
  File "build\node_modules\qs\.travis.yml"
  File "build\node_modules\qs\bower.json"
  File "build\node_modules\qs\CHANGELOG.md"
  File "build\node_modules\qs\CONTRIBUTING.md"
  SetOutPath "$INSTDIR\node_modules\qs\lib"
  File "build\node_modules\qs\lib\index.js"
  File "build\node_modules\qs\lib\parse.js"
  File "build\node_modules\qs\lib\stringify.js"
  File "build\node_modules\qs\lib\utils.js"
  SetOutPath "$INSTDIR\node_modules\qs"
  File "build\node_modules\qs\LICENSE"
  File "build\node_modules\qs\package.json"
  File "build\node_modules\qs\README.md"
  SetOutPath "$INSTDIR\node_modules\qs\test"
  File "build\node_modules\qs\test\parse.js"
  File "build\node_modules\qs\test\stringify.js"
  File "build\node_modules\qs\test\utils.js"
  SetOutPath "$INSTDIR\node_modules\range-parser"
  File "build\node_modules\range-parser\HISTORY.md"
  File "build\node_modules\range-parser\index.js"
  File "build\node_modules\range-parser\LICENSE"
  File "build\node_modules\range-parser\package.json"
  File "build\node_modules\range-parser\README.md"
  SetOutPath "$INSTDIR\node_modules\sat"
  File "build\node_modules\sat\CHANGELOG.md"
  SetOutPath "$INSTDIR\node_modules\sat\examples"
  File "build\node_modules\sat\examples\dynamic_collision.html"
  File "build\node_modules\sat\examples\examples.js"
  File "build\node_modules\sat\examples\simple_collision.html"
  SetOutPath "$INSTDIR\node_modules\sat"
  File "build\node_modules\sat\LICENSE"
  File "build\node_modules\sat\package.json"
  File "build\node_modules\sat\README.md"
  File "build\node_modules\sat\SAT.js"
  File "build\node_modules\sat\SAT.min.js"
  SetOutPath "$INSTDIR\node_modules\send"
  File "build\node_modules\send\HISTORY.md"
  File "build\node_modules\send\index.js"
  File "build\node_modules\send\LICENSE"
  File "build\node_modules\send\package.json"
  File "build\node_modules\send\README.md"
  SetOutPath "$INSTDIR\node_modules\serve-static"
  File "build\node_modules\serve-static\HISTORY.md"
  File "build\node_modules\serve-static\index.js"
  File "build\node_modules\serve-static\LICENSE"
  File "build\node_modules\serve-static\package.json"
  File "build\node_modules\serve-static\README.md"
  SetOutPath "$INSTDIR\node_modules\simple-quadtree"
  File "build\node_modules\simple-quadtree\LICENSE"
  File "build\node_modules\simple-quadtree\package.json"
  File "build\node_modules\simple-quadtree\qtree.js"
  File "build\node_modules\simple-quadtree\README.md"
  SetOutPath "$INSTDIR\node_modules\simple-quadtree\test"
  File "build\node_modules\simple-quadtree\test\test-qtree.js"
  SetOutPath "$INSTDIR\node_modules\socket.io"
  File "build\node_modules\socket.io\.npmignore"
  File "build\node_modules\socket.io\.travis.yml"
  File "build\node_modules\socket.io\History.md"
  SetOutPath "$INSTDIR\node_modules\socket.io\lib"
  File "build\node_modules\socket.io\lib\client.js"
  File "build\node_modules\socket.io\lib\index.js"
  File "build\node_modules\socket.io\lib\namespace.js"
  File "build\node_modules\socket.io\lib\socket.js"
  SetOutPath "$INSTDIR\node_modules\socket.io"
  File "build\node_modules\socket.io\LICENSE"
  File "build\node_modules\socket.io\Makefile"
  File "build\node_modules\socket.io\package.json"
  File "build\node_modules\socket.io\Readme.md"
  SetOutPath "$INSTDIR\node_modules\socket.io-adapter"
  File "build\node_modules\socket.io-adapter\.npmignore"
  File "build\node_modules\socket.io-adapter\History.md"
  File "build\node_modules\socket.io-adapter\index.js"
  File "build\node_modules\socket.io-adapter\LICENSE"
  SetOutPath "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser"
  File "build\node_modules\socket.io-adapter\node_modules\socket.io-parser\.npmignore"
  File "build\node_modules\socket.io-adapter\node_modules\socket.io-parser\.travis.yml"
  File "build\node_modules\socket.io-adapter\node_modules\socket.io-parser\.zuul.yml"
  SetOutPath "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser\bench"
  File "build\node_modules\socket.io-adapter\node_modules\socket.io-parser\bench\bench.js"
  File "build\node_modules\socket.io-adapter\node_modules\socket.io-parser\bench\index.js"
  SetOutPath "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser"
  File "build\node_modules\socket.io-adapter\node_modules\socket.io-parser\binary.js"
  File "build\node_modules\socket.io-adapter\node_modules\socket.io-parser\History.md"
  File "build\node_modules\socket.io-adapter\node_modules\socket.io-parser\index.js"
  File "build\node_modules\socket.io-adapter\node_modules\socket.io-parser\is-buffer.js"
  File "build\node_modules\socket.io-adapter\node_modules\socket.io-parser\Makefile"
  SetOutPath "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser\node_modules\debug"
  File "build\node_modules\socket.io-adapter\node_modules\socket.io-parser\node_modules\debug\debug.js"
  File "build\node_modules\socket.io-adapter\node_modules\socket.io-parser\node_modules\debug\index.js"
  SetOutPath "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser\node_modules\debug\lib"
  File "build\node_modules\socket.io-adapter\node_modules\socket.io-parser\node_modules\debug\lib\debug.js"
  SetOutPath "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser\node_modules\debug"
  File "build\node_modules\socket.io-adapter\node_modules\socket.io-parser\node_modules\debug\package.json"
  File "build\node_modules\socket.io-adapter\node_modules\socket.io-parser\node_modules\debug\Readme.md"
  SetOutPath "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser"
  File "build\node_modules\socket.io-adapter\node_modules\socket.io-parser\package.json"
  File "build\node_modules\socket.io-adapter\node_modules\socket.io-parser\Readme.md"
  SetOutPath "$INSTDIR\node_modules\socket.io-adapter"
  File "build\node_modules\socket.io-adapter\package.json"
  File "build\node_modules\socket.io-adapter\Readme.md"
  SetOutPath "$INSTDIR\node_modules\socket.io-client"
  File "build\node_modules\socket.io-client\History.md"
  SetOutPath "$INSTDIR\node_modules\socket.io-client\lib"
  File "build\node_modules\socket.io-client\lib\index.js"
  File "build\node_modules\socket.io-client\lib\manager.js"
  File "build\node_modules\socket.io-client\lib\on.js"
  File "build\node_modules\socket.io-client\lib\socket.js"
  File "build\node_modules\socket.io-client\lib\url.js"
  SetOutPath "$INSTDIR\node_modules\socket.io-client"
  File "build\node_modules\socket.io-client\LICENSE"
  SetOutPath "$INSTDIR\node_modules\socket.io-client\node_modules\component-emitter"
  File "build\node_modules\socket.io-client\node_modules\component-emitter\History.md"
  File "build\node_modules\socket.io-client\node_modules\component-emitter\index.js"
  File "build\node_modules\socket.io-client\node_modules\component-emitter\LICENSE"
  File "build\node_modules\socket.io-client\node_modules\component-emitter\package.json"
  File "build\node_modules\socket.io-client\node_modules\component-emitter\Readme.md"
  SetOutPath "$INSTDIR\node_modules\socket.io-client"
  File "build\node_modules\socket.io-client\package.json"
  File "build\node_modules\socket.io-client\README.md"
  File "build\node_modules\socket.io-client\socket.io.js"
  SetOutPath "$INSTDIR\node_modules\socket.io-parser"
  File "build\node_modules\socket.io-parser\.npmignore"
  File "build\node_modules\socket.io-parser\.travis.yml"
  File "build\node_modules\socket.io-parser\.zuul.yml"
  SetOutPath "$INSTDIR\node_modules\socket.io-parser\bench"
  File "build\node_modules\socket.io-parser\bench\bench.js"
  File "build\node_modules\socket.io-parser\bench\index.js"
  SetOutPath "$INSTDIR\node_modules\socket.io-parser"
  File "build\node_modules\socket.io-parser\binary.js"
  File "build\node_modules\socket.io-parser\History.md"
  File "build\node_modules\socket.io-parser\index.js"
  File "build\node_modules\socket.io-parser\is-buffer.js"
  File "build\node_modules\socket.io-parser\LICENSE"
  File "build\node_modules\socket.io-parser\Makefile"
  SetOutPath "$INSTDIR\node_modules\socket.io-parser\node_modules\json3\lib"
  File "build\node_modules\socket.io-parser\node_modules\json3\lib\json3.js"
  File "build\node_modules\socket.io-parser\node_modules\json3\lib\json3.min.js"
  SetOutPath "$INSTDIR\node_modules\socket.io-parser\node_modules\json3"
  File "build\node_modules\socket.io-parser\node_modules\json3\LICENSE"
  File "build\node_modules\socket.io-parser\node_modules\json3\package.json"
  File "build\node_modules\socket.io-parser\node_modules\json3\README.md"
  SetOutPath "$INSTDIR\node_modules\socket.io-parser"
  File "build\node_modules\socket.io-parser\package.json"
  File "build\node_modules\socket.io-parser\Readme.md"
  SetOutPath "$INSTDIR\node_modules\statuses"
  File "build\node_modules\statuses\codes.json"
  File "build\node_modules\statuses\index.js"
  File "build\node_modules\statuses\LICENSE"
  File "build\node_modules\statuses\package.json"
  File "build\node_modules\statuses\README.md"
  SetOutPath "$INSTDIR\node_modules\to-array"
  File "build\node_modules\to-array\.npmignore"
  File "build\node_modules\to-array\index.js"
  File "build\node_modules\to-array\LICENCE"
  File "build\node_modules\to-array\package.json"
  File "build\node_modules\to-array\README.md"
  SetOutPath "$INSTDIR\node_modules\type-is"
  File "build\node_modules\type-is\HISTORY.md"
  File "build\node_modules\type-is\index.js"
  File "build\node_modules\type-is\LICENSE"
  File "build\node_modules\type-is\package.json"
  File "build\node_modules\type-is\README.md"
  SetOutPath "$INSTDIR\node_modules\ultron"
  File "build\node_modules\ultron\.npmignore"
  File "build\node_modules\ultron\.travis.yml"
  File "build\node_modules\ultron\index.js"
  File "build\node_modules\ultron\LICENSE"
  File "build\node_modules\ultron\package.json"
  File "build\node_modules\ultron\README.md"
  File "build\node_modules\ultron\test.js"
  SetOutPath "$INSTDIR\node_modules\unpipe"
  File "build\node_modules\unpipe\HISTORY.md"
  File "build\node_modules\unpipe\index.js"
  File "build\node_modules\unpipe\LICENSE"
  File "build\node_modules\unpipe\package.json"
  File "build\node_modules\unpipe\README.md"
  SetOutPath "$INSTDIR\node_modules\utf8"
  File "build\node_modules\utf8\.gitattributes"
  File "build\node_modules\utf8\.npmignore"
  File "build\node_modules\utf8\.travis.yml"
  File "build\node_modules\utf8\bower.json"
  File "build\node_modules\utf8\component.json"
  File "build\node_modules\utf8\Gruntfile.js"
  File "build\node_modules\utf8\LICENSE-MIT.txt"
  File "build\node_modules\utf8\package.json"
  File "build\node_modules\utf8\README.md"
  SetOutPath "$INSTDIR\node_modules\utf8\tests"
  File "build\node_modules\utf8\tests\generate-test-data.py"
  File "build\node_modules\utf8\tests\index.html"
  File "build\node_modules\utf8\tests\tests.js"
  SetOutPath "$INSTDIR\node_modules\utf8"
  File "build\node_modules\utf8\utf8.js"
  SetOutPath "$INSTDIR\node_modules\utils-merge"
  File "build\node_modules\utils-merge\.travis.yml"
  File "build\node_modules\utils-merge\index.js"
  File "build\node_modules\utils-merge\LICENSE"
  File "build\node_modules\utils-merge\package.json"
  File "build\node_modules\utils-merge\README.md"
  SetOutPath "$INSTDIR\node_modules\vary"
  File "build\node_modules\vary\HISTORY.md"
  File "build\node_modules\vary\index.js"
  File "build\node_modules\vary\LICENSE"
  File "build\node_modules\vary\package.json"
  File "build\node_modules\vary\README.md"
  SetOutPath "$INSTDIR\node_modules\ws"
  File "build\node_modules\ws\.npmignore"
  File "build\node_modules\ws\.travis.yml"
  File "build\node_modules\ws\index.js"
  SetOutPath "$INSTDIR\node_modules\ws\lib"
  File "build\node_modules\ws\lib\BufferPool.js"
  File "build\node_modules\ws\lib\BufferUtil.fallback.js"
  File "build\node_modules\ws\lib\BufferUtil.js"
  File "build\node_modules\ws\lib\ErrorCodes.js"
  File "build\node_modules\ws\lib\Extensions.js"
  File "build\node_modules\ws\lib\PerMessageDeflate.js"
  File "build\node_modules\ws\lib\Receiver.hixie.js"
  File "build\node_modules\ws\lib\Receiver.js"
  File "build\node_modules\ws\lib\Sender.hixie.js"
  File "build\node_modules\ws\lib\Sender.js"
  File "build\node_modules\ws\lib\Validation.fallback.js"
  File "build\node_modules\ws\lib\Validation.js"
  File "build\node_modules\ws\lib\WebSocket.js"
  File "build\node_modules\ws\lib\WebSocketServer.js"
  SetOutPath "$INSTDIR\node_modules\ws"
  File "build\node_modules\ws\Makefile"
  File "build\node_modules\ws\package.json"
  File "build\node_modules\ws\README.md"
  SetOutPath "$INSTDIR\node_modules\xmlhttprequest-ssl"
  File "build\node_modules\xmlhttprequest-ssl\autotest.watchr"
  SetOutPath "$INSTDIR\node_modules\xmlhttprequest-ssl\example"
  File "build\node_modules\xmlhttprequest-ssl\example\demo.js"
  SetOutPath "$INSTDIR\node_modules\xmlhttprequest-ssl\lib"
  File "build\node_modules\xmlhttprequest-ssl\lib\XMLHttpRequest.js"
  SetOutPath "$INSTDIR\node_modules\xmlhttprequest-ssl"
  File "build\node_modules\xmlhttprequest-ssl\LICENSE"
  File "build\node_modules\xmlhttprequest-ssl\package.json"
  File "build\node_modules\xmlhttprequest-ssl\README.md"
  SetOutPath "$INSTDIR\node_modules\xmlhttprequest-ssl\tests"
  File "build\node_modules\xmlhttprequest-ssl\tests\test-constants.js"
  File "build\node_modules\xmlhttprequest-ssl\tests\test-events.js"
  File "build\node_modules\xmlhttprequest-ssl\tests\test-exceptions.js"
  File "build\node_modules\xmlhttprequest-ssl\tests\test-headers.js"
  File "build\node_modules\xmlhttprequest-ssl\tests\test-redirect-302.js"
  File "build\node_modules\xmlhttprequest-ssl\tests\test-redirect-303.js"
  File "build\node_modules\xmlhttprequest-ssl\tests\test-redirect-307.js"
  File "build\node_modules\xmlhttprequest-ssl\tests\test-request-methods.js"
  File "build\node_modules\xmlhttprequest-ssl\tests\test-request-protocols.js"
  File "build\node_modules\xmlhttprequest-ssl\tests\testdata.txt"
  SetOutPath "$INSTDIR\node_modules\yeast"
  File "build\node_modules\yeast\index.js"
  File "build\node_modules\yeast\LICENSE"
  File "build\node_modules\yeast\package.json"
  File "build\node_modules\yeast\README.md"
  SetOutPath "$INSTDIR"
  File "build\package.json"
  SetOutPath "$INSTDIR\server"
  File "build\server\index.js"
  SetOutPath "$INSTDIR\server\lib"
  File "build\server\lib\util.js"
  SetOutPath "$INSTDIR\server"
  File "build\server\player.js"
  File "build\server\quadtree.js"
  SetOutPath "$INSTDIR"
  File "build\start.bat"
  CreateDirectory "$SMPROGRAMS\agar.io-clone"
  CreateShortCut "$SMPROGRAMS\agar.io-clone\agar.io-clone.lnk" "$INSTDIR\start.bat"
SectionEnd

Section -AdditionalIcons
  CreateShortCut "$SMPROGRAMS\agar.io-clone\Uninstall.lnk" "$INSTDIR\uninst.exe"
SectionEnd

Section -Post
  WriteUninstaller "$INSTDIR\uninst.exe"
  WriteRegStr HKLM "${PRODUCT_DIR_REGKEY}" "" "$INSTDIR\node.exe"
  WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayName" "$(^Name)"
  WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "UninstallString" "$INSTDIR\uninst.exe"
  WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayIcon" "$INSTDIR\node.exe"
  WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayVersion" "${PRODUCT_VERSION}"
  WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "URLInfoAbout" "${PRODUCT_WEB_SITE}"
  WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "Publisher" "${PRODUCT_PUBLISHER}"
SectionEnd


Function un.onUninstSuccess
  HideWindow
  MessageBox MB_ICONINFORMATION|MB_OK "$(^Name) was successfully removed from your computer."
FunctionEnd

Function un.onInit
  MessageBox MB_ICONQUESTION|MB_YESNO|MB_DEFBUTTON2 "Are you sure you want to completely remove $(^Name) and all of its components?" IDYES +2
  Abort
FunctionEnd

Section Uninstall
  Delete "$INSTDIR\uninst.exe"
  Delete "$INSTDIR\start.bat"
  Delete "$INSTDIR\server\quadtree.js"
  Delete "$INSTDIR\server\player.js"
  Delete "$INSTDIR\server\lib\util.js"
  Delete "$INSTDIR\server\index.js"
  Delete "$INSTDIR\package.json"
  Delete "$INSTDIR\node_modules\yeast\README.md"
  Delete "$INSTDIR\node_modules\yeast\package.json"
  Delete "$INSTDIR\node_modules\yeast\LICENSE"
  Delete "$INSTDIR\node_modules\yeast\index.js"
  Delete "$INSTDIR\node_modules\xmlhttprequest-ssl\tests\testdata.txt"
  Delete "$INSTDIR\node_modules\xmlhttprequest-ssl\tests\test-request-protocols.js"
  Delete "$INSTDIR\node_modules\xmlhttprequest-ssl\tests\test-request-methods.js"
  Delete "$INSTDIR\node_modules\xmlhttprequest-ssl\tests\test-redirect-307.js"
  Delete "$INSTDIR\node_modules\xmlhttprequest-ssl\tests\test-redirect-303.js"
  Delete "$INSTDIR\node_modules\xmlhttprequest-ssl\tests\test-redirect-302.js"
  Delete "$INSTDIR\node_modules\xmlhttprequest-ssl\tests\test-headers.js"
  Delete "$INSTDIR\node_modules\xmlhttprequest-ssl\tests\test-exceptions.js"
  Delete "$INSTDIR\node_modules\xmlhttprequest-ssl\tests\test-events.js"
  Delete "$INSTDIR\node_modules\xmlhttprequest-ssl\tests\test-constants.js"
  Delete "$INSTDIR\node_modules\xmlhttprequest-ssl\README.md"
  Delete "$INSTDIR\node_modules\xmlhttprequest-ssl\package.json"
  Delete "$INSTDIR\node_modules\xmlhttprequest-ssl\LICENSE"
  Delete "$INSTDIR\node_modules\xmlhttprequest-ssl\lib\XMLHttpRequest.js"
  Delete "$INSTDIR\node_modules\xmlhttprequest-ssl\example\demo.js"
  Delete "$INSTDIR\node_modules\xmlhttprequest-ssl\autotest.watchr"
  Delete "$INSTDIR\node_modules\ws\README.md"
  Delete "$INSTDIR\node_modules\ws\package.json"
  Delete "$INSTDIR\node_modules\ws\Makefile"
  Delete "$INSTDIR\node_modules\ws\lib\WebSocketServer.js"
  Delete "$INSTDIR\node_modules\ws\lib\WebSocket.js"
  Delete "$INSTDIR\node_modules\ws\lib\Validation.js"
  Delete "$INSTDIR\node_modules\ws\lib\Validation.fallback.js"
  Delete "$INSTDIR\node_modules\ws\lib\Sender.js"
  Delete "$INSTDIR\node_modules\ws\lib\Sender.hixie.js"
  Delete "$INSTDIR\node_modules\ws\lib\Receiver.js"
  Delete "$INSTDIR\node_modules\ws\lib\Receiver.hixie.js"
  Delete "$INSTDIR\node_modules\ws\lib\PerMessageDeflate.js"
  Delete "$INSTDIR\node_modules\ws\lib\Extensions.js"
  Delete "$INSTDIR\node_modules\ws\lib\ErrorCodes.js"
  Delete "$INSTDIR\node_modules\ws\lib\BufferUtil.js"
  Delete "$INSTDIR\node_modules\ws\lib\BufferUtil.fallback.js"
  Delete "$INSTDIR\node_modules\ws\lib\BufferPool.js"
  Delete "$INSTDIR\node_modules\ws\index.js"
  Delete "$INSTDIR\node_modules\ws\.travis.yml"
  Delete "$INSTDIR\node_modules\ws\.npmignore"
  Delete "$INSTDIR\node_modules\vary\README.md"
  Delete "$INSTDIR\node_modules\vary\package.json"
  Delete "$INSTDIR\node_modules\vary\LICENSE"
  Delete "$INSTDIR\node_modules\vary\index.js"
  Delete "$INSTDIR\node_modules\vary\HISTORY.md"
  Delete "$INSTDIR\node_modules\utils-merge\README.md"
  Delete "$INSTDIR\node_modules\utils-merge\package.json"
  Delete "$INSTDIR\node_modules\utils-merge\LICENSE"
  Delete "$INSTDIR\node_modules\utils-merge\index.js"
  Delete "$INSTDIR\node_modules\utils-merge\.travis.yml"
  Delete "$INSTDIR\node_modules\utf8\utf8.js"
  Delete "$INSTDIR\node_modules\utf8\tests\tests.js"
  Delete "$INSTDIR\node_modules\utf8\tests\index.html"
  Delete "$INSTDIR\node_modules\utf8\tests\generate-test-data.py"
  Delete "$INSTDIR\node_modules\utf8\README.md"
  Delete "$INSTDIR\node_modules\utf8\package.json"
  Delete "$INSTDIR\node_modules\utf8\LICENSE-MIT.txt"
  Delete "$INSTDIR\node_modules\utf8\Gruntfile.js"
  Delete "$INSTDIR\node_modules\utf8\component.json"
  Delete "$INSTDIR\node_modules\utf8\bower.json"
  Delete "$INSTDIR\node_modules\utf8\.travis.yml"
  Delete "$INSTDIR\node_modules\utf8\.npmignore"
  Delete "$INSTDIR\node_modules\utf8\.gitattributes"
  Delete "$INSTDIR\node_modules\unpipe\README.md"
  Delete "$INSTDIR\node_modules\unpipe\package.json"
  Delete "$INSTDIR\node_modules\unpipe\LICENSE"
  Delete "$INSTDIR\node_modules\unpipe\index.js"
  Delete "$INSTDIR\node_modules\unpipe\HISTORY.md"
  Delete "$INSTDIR\node_modules\ultron\test.js"
  Delete "$INSTDIR\node_modules\ultron\README.md"
  Delete "$INSTDIR\node_modules\ultron\package.json"
  Delete "$INSTDIR\node_modules\ultron\LICENSE"
  Delete "$INSTDIR\node_modules\ultron\index.js"
  Delete "$INSTDIR\node_modules\ultron\.travis.yml"
  Delete "$INSTDIR\node_modules\ultron\.npmignore"
  Delete "$INSTDIR\node_modules\type-is\README.md"
  Delete "$INSTDIR\node_modules\type-is\package.json"
  Delete "$INSTDIR\node_modules\type-is\LICENSE"
  Delete "$INSTDIR\node_modules\type-is\index.js"
  Delete "$INSTDIR\node_modules\type-is\HISTORY.md"
  Delete "$INSTDIR\node_modules\to-array\README.md"
  Delete "$INSTDIR\node_modules\to-array\package.json"
  Delete "$INSTDIR\node_modules\to-array\LICENCE"
  Delete "$INSTDIR\node_modules\to-array\index.js"
  Delete "$INSTDIR\node_modules\to-array\.npmignore"
  Delete "$INSTDIR\node_modules\statuses\README.md"
  Delete "$INSTDIR\node_modules\statuses\package.json"
  Delete "$INSTDIR\node_modules\statuses\LICENSE"
  Delete "$INSTDIR\node_modules\statuses\index.js"
  Delete "$INSTDIR\node_modules\statuses\codes.json"
  Delete "$INSTDIR\node_modules\socket.io-parser\Readme.md"
  Delete "$INSTDIR\node_modules\socket.io-parser\package.json"
  Delete "$INSTDIR\node_modules\socket.io-parser\node_modules\json3\README.md"
  Delete "$INSTDIR\node_modules\socket.io-parser\node_modules\json3\package.json"
  Delete "$INSTDIR\node_modules\socket.io-parser\node_modules\json3\LICENSE"
  Delete "$INSTDIR\node_modules\socket.io-parser\node_modules\json3\lib\json3.min.js"
  Delete "$INSTDIR\node_modules\socket.io-parser\node_modules\json3\lib\json3.js"
  Delete "$INSTDIR\node_modules\socket.io-parser\Makefile"
  Delete "$INSTDIR\node_modules\socket.io-parser\LICENSE"
  Delete "$INSTDIR\node_modules\socket.io-parser\is-buffer.js"
  Delete "$INSTDIR\node_modules\socket.io-parser\index.js"
  Delete "$INSTDIR\node_modules\socket.io-parser\History.md"
  Delete "$INSTDIR\node_modules\socket.io-parser\binary.js"
  Delete "$INSTDIR\node_modules\socket.io-parser\bench\index.js"
  Delete "$INSTDIR\node_modules\socket.io-parser\bench\bench.js"
  Delete "$INSTDIR\node_modules\socket.io-parser\.zuul.yml"
  Delete "$INSTDIR\node_modules\socket.io-parser\.travis.yml"
  Delete "$INSTDIR\node_modules\socket.io-parser\.npmignore"
  Delete "$INSTDIR\node_modules\socket.io-client\socket.io.js"
  Delete "$INSTDIR\node_modules\socket.io-client\README.md"
  Delete "$INSTDIR\node_modules\socket.io-client\package.json"
  Delete "$INSTDIR\node_modules\socket.io-client\node_modules\component-emitter\Readme.md"
  Delete "$INSTDIR\node_modules\socket.io-client\node_modules\component-emitter\package.json"
  Delete "$INSTDIR\node_modules\socket.io-client\node_modules\component-emitter\LICENSE"
  Delete "$INSTDIR\node_modules\socket.io-client\node_modules\component-emitter\index.js"
  Delete "$INSTDIR\node_modules\socket.io-client\node_modules\component-emitter\History.md"
  Delete "$INSTDIR\node_modules\socket.io-client\LICENSE"
  Delete "$INSTDIR\node_modules\socket.io-client\lib\url.js"
  Delete "$INSTDIR\node_modules\socket.io-client\lib\socket.js"
  Delete "$INSTDIR\node_modules\socket.io-client\lib\on.js"
  Delete "$INSTDIR\node_modules\socket.io-client\lib\manager.js"
  Delete "$INSTDIR\node_modules\socket.io-client\lib\index.js"
  Delete "$INSTDIR\node_modules\socket.io-client\History.md"
  Delete "$INSTDIR\node_modules\socket.io-adapter\Readme.md"
  Delete "$INSTDIR\node_modules\socket.io-adapter\package.json"
  Delete "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser\Readme.md"
  Delete "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser\package.json"
  Delete "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser\node_modules\debug\Readme.md"
  Delete "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser\node_modules\debug\package.json"
  Delete "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser\node_modules\debug\lib\debug.js"
  Delete "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser\node_modules\debug\index.js"
  Delete "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser\node_modules\debug\debug.js"
  Delete "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser\Makefile"
  Delete "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser\is-buffer.js"
  Delete "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser\index.js"
  Delete "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser\History.md"
  Delete "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser\binary.js"
  Delete "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser\bench\index.js"
  Delete "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser\bench\bench.js"
  Delete "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser\.zuul.yml"
  Delete "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser\.travis.yml"
  Delete "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser\.npmignore"
  Delete "$INSTDIR\node_modules\socket.io-adapter\LICENSE"
  Delete "$INSTDIR\node_modules\socket.io-adapter\index.js"
  Delete "$INSTDIR\node_modules\socket.io-adapter\History.md"
  Delete "$INSTDIR\node_modules\socket.io-adapter\.npmignore"
  Delete "$INSTDIR\node_modules\socket.io\Readme.md"
  Delete "$INSTDIR\node_modules\socket.io\package.json"
  Delete "$INSTDIR\node_modules\socket.io\Makefile"
  Delete "$INSTDIR\node_modules\socket.io\LICENSE"
  Delete "$INSTDIR\node_modules\socket.io\lib\socket.js"
  Delete "$INSTDIR\node_modules\socket.io\lib\namespace.js"
  Delete "$INSTDIR\node_modules\socket.io\lib\index.js"
  Delete "$INSTDIR\node_modules\socket.io\lib\client.js"
  Delete "$INSTDIR\node_modules\socket.io\History.md"
  Delete "$INSTDIR\node_modules\socket.io\.travis.yml"
  Delete "$INSTDIR\node_modules\socket.io\.npmignore"
  Delete "$INSTDIR\node_modules\simple-quadtree\test\test-qtree.js"
  Delete "$INSTDIR\node_modules\simple-quadtree\README.md"
  Delete "$INSTDIR\node_modules\simple-quadtree\qtree.js"
  Delete "$INSTDIR\node_modules\simple-quadtree\package.json"
  Delete "$INSTDIR\node_modules\simple-quadtree\LICENSE"
  Delete "$INSTDIR\node_modules\serve-static\README.md"
  Delete "$INSTDIR\node_modules\serve-static\package.json"
  Delete "$INSTDIR\node_modules\serve-static\LICENSE"
  Delete "$INSTDIR\node_modules\serve-static\index.js"
  Delete "$INSTDIR\node_modules\serve-static\HISTORY.md"
  Delete "$INSTDIR\node_modules\send\README.md"
  Delete "$INSTDIR\node_modules\send\package.json"
  Delete "$INSTDIR\node_modules\send\LICENSE"
  Delete "$INSTDIR\node_modules\send\index.js"
  Delete "$INSTDIR\node_modules\send\HISTORY.md"
  Delete "$INSTDIR\node_modules\sat\SAT.min.js"
  Delete "$INSTDIR\node_modules\sat\SAT.js"
  Delete "$INSTDIR\node_modules\sat\README.md"
  Delete "$INSTDIR\node_modules\sat\package.json"
  Delete "$INSTDIR\node_modules\sat\LICENSE"
  Delete "$INSTDIR\node_modules\sat\examples\simple_collision.html"
  Delete "$INSTDIR\node_modules\sat\examples\examples.js"
  Delete "$INSTDIR\node_modules\sat\examples\dynamic_collision.html"
  Delete "$INSTDIR\node_modules\sat\CHANGELOG.md"
  Delete "$INSTDIR\node_modules\range-parser\README.md"
  Delete "$INSTDIR\node_modules\range-parser\package.json"
  Delete "$INSTDIR\node_modules\range-parser\LICENSE"
  Delete "$INSTDIR\node_modules\range-parser\index.js"
  Delete "$INSTDIR\node_modules\range-parser\HISTORY.md"
  Delete "$INSTDIR\node_modules\qs\test\utils.js"
  Delete "$INSTDIR\node_modules\qs\test\stringify.js"
  Delete "$INSTDIR\node_modules\qs\test\parse.js"
  Delete "$INSTDIR\node_modules\qs\README.md"
  Delete "$INSTDIR\node_modules\qs\package.json"
  Delete "$INSTDIR\node_modules\qs\LICENSE"
  Delete "$INSTDIR\node_modules\qs\lib\utils.js"
  Delete "$INSTDIR\node_modules\qs\lib\stringify.js"
  Delete "$INSTDIR\node_modules\qs\lib\parse.js"
  Delete "$INSTDIR\node_modules\qs\lib\index.js"
  Delete "$INSTDIR\node_modules\qs\CONTRIBUTING.md"
  Delete "$INSTDIR\node_modules\qs\CHANGELOG.md"
  Delete "$INSTDIR\node_modules\qs\bower.json"
  Delete "$INSTDIR\node_modules\qs\.travis.yml"
  Delete "$INSTDIR\node_modules\qs\.npmignore"
  Delete "$INSTDIR\node_modules\qs\.eslintignore"
  Delete "$INSTDIR\node_modules\proxy-addr\README.md"
  Delete "$INSTDIR\node_modules\proxy-addr\package.json"
  Delete "$INSTDIR\node_modules\proxy-addr\LICENSE"
  Delete "$INSTDIR\node_modules\proxy-addr\index.js"
  Delete "$INSTDIR\node_modules\proxy-addr\HISTORY.md"
  Delete "$INSTDIR\node_modules\path-to-regexp\Readme.md"
  Delete "$INSTDIR\node_modules\path-to-regexp\package.json"
  Delete "$INSTDIR\node_modules\path-to-regexp\LICENSE"
  Delete "$INSTDIR\node_modules\path-to-regexp\index.js"
  Delete "$INSTDIR\node_modules\path-to-regexp\History.md"
  Delete "$INSTDIR\node_modules\parseurl\README.md"
  Delete "$INSTDIR\node_modules\parseurl\package.json"
  Delete "$INSTDIR\node_modules\parseurl\LICENSE"
  Delete "$INSTDIR\node_modules\parseurl\index.js"
  Delete "$INSTDIR\node_modules\parseurl\HISTORY.md"
  Delete "$INSTDIR\node_modules\parseuri\test.js"
  Delete "$INSTDIR\node_modules\parseuri\package.json"
  Delete "$INSTDIR\node_modules\parseuri\Makefile"
  Delete "$INSTDIR\node_modules\parseuri\index.js"
  Delete "$INSTDIR\node_modules\parseuri\History.md"
  Delete "$INSTDIR\node_modules\parseqs\test.js"
  Delete "$INSTDIR\node_modules\parseqs\package.json"
  Delete "$INSTDIR\node_modules\parseqs\Makefile"
  Delete "$INSTDIR\node_modules\parseqs\index.js"
  Delete "$INSTDIR\node_modules\parsejson\test.js"
  Delete "$INSTDIR\node_modules\parsejson\package.json"
  Delete "$INSTDIR\node_modules\parsejson\Makefile"
  Delete "$INSTDIR\node_modules\parsejson\index.js"
  Delete "$INSTDIR\node_modules\options\README.md"
  Delete "$INSTDIR\node_modules\options\package.json"
  Delete "$INSTDIR\node_modules\options\Makefile"
  Delete "$INSTDIR\node_modules\options\lib\options.js"
  Delete "$INSTDIR\node_modules\options\.npmignore"
  Delete "$INSTDIR\node_modules\on-finished\README.md"
  Delete "$INSTDIR\node_modules\on-finished\package.json"
  Delete "$INSTDIR\node_modules\on-finished\LICENSE"
  Delete "$INSTDIR\node_modules\on-finished\index.js"
  Delete "$INSTDIR\node_modules\on-finished\HISTORY.md"
  Delete "$INSTDIR\node_modules\object-component\test\object.js"
  Delete "$INSTDIR\node_modules\object-component\Readme.md"
  Delete "$INSTDIR\node_modules\object-component\package.json"
  Delete "$INSTDIR\node_modules\object-component\Makefile"
  Delete "$INSTDIR\node_modules\object-component\index.js"
  Delete "$INSTDIR\node_modules\object-component\History.md"
  Delete "$INSTDIR\node_modules\object-component\component.json"
  Delete "$INSTDIR\node_modules\object-component\.npmignore"
  Delete "$INSTDIR\node_modules\negotiator\README.md"
  Delete "$INSTDIR\node_modules\negotiator\package.json"
  Delete "$INSTDIR\node_modules\negotiator\LICENSE"
  Delete "$INSTDIR\node_modules\negotiator\lib\mediaType.js"
  Delete "$INSTDIR\node_modules\negotiator\lib\language.js"
  Delete "$INSTDIR\node_modules\negotiator\lib\encoding.js"
  Delete "$INSTDIR\node_modules\negotiator\lib\charset.js"
  Delete "$INSTDIR\node_modules\negotiator\index.js"
  Delete "$INSTDIR\node_modules\negotiator\HISTORY.md"
  Delete "$INSTDIR\node_modules\ms\README.md"
  Delete "$INSTDIR\node_modules\ms\package.json"
  Delete "$INSTDIR\node_modules\ms\LICENSE"
  Delete "$INSTDIR\node_modules\ms\index.js"
  Delete "$INSTDIR\node_modules\ms\History.md"
  Delete "$INSTDIR\node_modules\ms\.npmignore"
  Delete "$INSTDIR\node_modules\mime-types\README.md"
  Delete "$INSTDIR\node_modules\mime-types\package.json"
  Delete "$INSTDIR\node_modules\mime-types\LICENSE"
  Delete "$INSTDIR\node_modules\mime-types\index.js"
  Delete "$INSTDIR\node_modules\mime-types\HISTORY.md"
  Delete "$INSTDIR\node_modules\mime-db\README.md"
  Delete "$INSTDIR\node_modules\mime-db\package.json"
  Delete "$INSTDIR\node_modules\mime-db\LICENSE"
  Delete "$INSTDIR\node_modules\mime-db\index.js"
  Delete "$INSTDIR\node_modules\mime-db\HISTORY.md"
  Delete "$INSTDIR\node_modules\mime-db\db.json"
  Delete "$INSTDIR\node_modules\mime\types.json"
  Delete "$INSTDIR\node_modules\mime\README.md"
  Delete "$INSTDIR\node_modules\mime\package.json"
  Delete "$INSTDIR\node_modules\mime\mime.js"
  Delete "$INSTDIR\node_modules\mime\LICENSE"
  Delete "$INSTDIR\node_modules\mime\cli.js"
  Delete "$INSTDIR\node_modules\mime\build\test.js"
  Delete "$INSTDIR\node_modules\mime\build\build.js"
  Delete "$INSTDIR\node_modules\mime\.npmignore"
  Delete "$INSTDIR\node_modules\methods\README.md"
  Delete "$INSTDIR\node_modules\methods\package.json"
  Delete "$INSTDIR\node_modules\methods\LICENSE"
  Delete "$INSTDIR\node_modules\methods\index.js"
  Delete "$INSTDIR\node_modules\methods\HISTORY.md"
  Delete "$INSTDIR\node_modules\merge-descriptors\README.md"
  Delete "$INSTDIR\node_modules\merge-descriptors\package.json"
  Delete "$INSTDIR\node_modules\merge-descriptors\LICENSE"
  Delete "$INSTDIR\node_modules\merge-descriptors\index.js"
  Delete "$INSTDIR\node_modules\merge-descriptors\HISTORY.md"
  Delete "$INSTDIR\node_modules\media-typer\README.md"
  Delete "$INSTDIR\node_modules\media-typer\package.json"
  Delete "$INSTDIR\node_modules\media-typer\LICENSE"
  Delete "$INSTDIR\node_modules\media-typer\index.js"
  Delete "$INSTDIR\node_modules\media-typer\HISTORY.md"
  Delete "$INSTDIR\node_modules\json3\README.md"
  Delete "$INSTDIR\node_modules\json3\package.json"
  Delete "$INSTDIR\node_modules\json3\LICENSE"
  Delete "$INSTDIR\node_modules\json3\lib\json3.min.js"
  Delete "$INSTDIR\node_modules\json3\lib\json3.js"
  Delete "$INSTDIR\node_modules\json3\coverage\lcov.info"
  Delete "$INSTDIR\node_modules\json3\coverage\lcov-report\prettify.js"
  Delete "$INSTDIR\node_modules\json3\coverage\lcov-report\prettify.css"
  Delete "$INSTDIR\node_modules\json3\coverage\lcov-report\lib\json3.js.html"
  Delete "$INSTDIR\node_modules\json3\coverage\coverage.json"
  Delete "$INSTDIR\node_modules\json3\.travis.yml"
  Delete "$INSTDIR\node_modules\json3\.npmignore"
  Delete "$INSTDIR\node_modules\json3\.jamignore"
  Delete "$INSTDIR\node_modules\json3\.gitmodules"
  Delete "$INSTDIR\node_modules\isarray\README.md"
  Delete "$INSTDIR\node_modules\isarray\package.json"
  Delete "$INSTDIR\node_modules\isarray\index.js"
  Delete "$INSTDIR\node_modules\isarray\component.json"
  Delete "$INSTDIR\node_modules\isarray\build\build.js"
  Delete "$INSTDIR\node_modules\ipaddr.js\test\ipaddr.test.coffee"
  Delete "$INSTDIR\node_modules\ipaddr.js\src\ipaddr.coffee"
  Delete "$INSTDIR\node_modules\ipaddr.js\README.md"
  Delete "$INSTDIR\node_modules\ipaddr.js\package.json"
  Delete "$INSTDIR\node_modules\ipaddr.js\LICENSE"
  Delete "$INSTDIR\node_modules\ipaddr.js\lib\ipaddr.js"
  Delete "$INSTDIR\node_modules\ipaddr.js\ipaddr.min.js"
  Delete "$INSTDIR\node_modules\ipaddr.js\Cakefile"
  Delete "$INSTDIR\node_modules\ipaddr.js\bower.json"
  Delete "$INSTDIR\node_modules\ipaddr.js\.travis.yml"
  Delete "$INSTDIR\node_modules\ipaddr.js\.npmignore"
  Delete "$INSTDIR\node_modules\inherits\test.js"
  Delete "$INSTDIR\node_modules\inherits\README.md"
  Delete "$INSTDIR\node_modules\inherits\package.json"
  Delete "$INSTDIR\node_modules\inherits\LICENSE"
  Delete "$INSTDIR\node_modules\inherits\inherits_browser.js"
  Delete "$INSTDIR\node_modules\inherits\inherits.js"
  Delete "$INSTDIR\node_modules\indexof\Readme.md"
  Delete "$INSTDIR\node_modules\indexof\package.json"
  Delete "$INSTDIR\node_modules\indexof\Makefile"
  Delete "$INSTDIR\node_modules\indexof\index.js"
  Delete "$INSTDIR\node_modules\indexof\component.json"
  Delete "$INSTDIR\node_modules\indexof\.npmignore"
  Delete "$INSTDIR\node_modules\http-errors\README.md"
  Delete "$INSTDIR\node_modules\http-errors\package.json"
  Delete "$INSTDIR\node_modules\http-errors\LICENSE"
  Delete "$INSTDIR\node_modules\http-errors\index.js"
  Delete "$INSTDIR\node_modules\http-errors\HISTORY.md"
  Delete "$INSTDIR\node_modules\has-cors\test.js"
  Delete "$INSTDIR\node_modules\has-cors\Readme.md"
  Delete "$INSTDIR\node_modules\has-cors\package.json"
  Delete "$INSTDIR\node_modules\has-cors\Makefile"
  Delete "$INSTDIR\node_modules\has-cors\index.js"
  Delete "$INSTDIR\node_modules\has-cors\History.md"
  Delete "$INSTDIR\node_modules\has-cors\component.json"
  Delete "$INSTDIR\node_modules\has-cors\.npmignore"
  Delete "$INSTDIR\node_modules\has-binary\test.js"
  Delete "$INSTDIR\node_modules\has-binary\README.md"
  Delete "$INSTDIR\node_modules\has-binary\package.json"
  Delete "$INSTDIR\node_modules\has-binary\Makefile"
  Delete "$INSTDIR\node_modules\has-binary\LICENSE"
  Delete "$INSTDIR\node_modules\has-binary\index.js"
  Delete "$INSTDIR\node_modules\has-binary\History.md"
  Delete "$INSTDIR\node_modules\has-binary\.npmignore"
  Delete "$INSTDIR\node_modules\fresh\README.md"
  Delete "$INSTDIR\node_modules\fresh\package.json"
  Delete "$INSTDIR\node_modules\fresh\LICENSE"
  Delete "$INSTDIR\node_modules\fresh\index.js"
  Delete "$INSTDIR\node_modules\fresh\HISTORY.md"
  Delete "$INSTDIR\node_modules\forwarded\README.md"
  Delete "$INSTDIR\node_modules\forwarded\package.json"
  Delete "$INSTDIR\node_modules\forwarded\LICENSE"
  Delete "$INSTDIR\node_modules\forwarded\index.js"
  Delete "$INSTDIR\node_modules\forwarded\HISTORY.md"
  Delete "$INSTDIR\node_modules\finalhandler\README.md"
  Delete "$INSTDIR\node_modules\finalhandler\package.json"
  Delete "$INSTDIR\node_modules\finalhandler\LICENSE"
  Delete "$INSTDIR\node_modules\finalhandler\index.js"
  Delete "$INSTDIR\node_modules\finalhandler\HISTORY.md"
  Delete "$INSTDIR\node_modules\express\Readme.md"
  Delete "$INSTDIR\node_modules\express\package.json"
  Delete "$INSTDIR\node_modules\express\LICENSE"
  Delete "$INSTDIR\node_modules\express\lib\view.js"
  Delete "$INSTDIR\node_modules\express\lib\utils.js"
  Delete "$INSTDIR\node_modules\express\lib\router\route.js"
  Delete "$INSTDIR\node_modules\express\lib\router\layer.js"
  Delete "$INSTDIR\node_modules\express\lib\router\index.js"
  Delete "$INSTDIR\node_modules\express\lib\response.js"
  Delete "$INSTDIR\node_modules\express\lib\request.js"
  Delete "$INSTDIR\node_modules\express\lib\middleware\query.js"
  Delete "$INSTDIR\node_modules\express\lib\middleware\init.js"
  Delete "$INSTDIR\node_modules\express\lib\express.js"
  Delete "$INSTDIR\node_modules\express\lib\application.js"
  Delete "$INSTDIR\node_modules\express\index.js"
  Delete "$INSTDIR\node_modules\express\History.md"
  Delete "$INSTDIR\node_modules\etag\README.md"
  Delete "$INSTDIR\node_modules\etag\package.json"
  Delete "$INSTDIR\node_modules\etag\LICENSE"
  Delete "$INSTDIR\node_modules\etag\index.js"
  Delete "$INSTDIR\node_modules\etag\HISTORY.md"
  Delete "$INSTDIR\node_modules\escape-html\Readme.md"
  Delete "$INSTDIR\node_modules\escape-html\package.json"
  Delete "$INSTDIR\node_modules\escape-html\LICENSE"
  Delete "$INSTDIR\node_modules\escape-html\index.js"
  Delete "$INSTDIR\node_modules\engine.io-parser\Readme.md"
  Delete "$INSTDIR\node_modules\engine.io-parser\package.json"
  Delete "$INSTDIR\node_modules\engine.io-parser\node_modules\has-binary\test.js"
  Delete "$INSTDIR\node_modules\engine.io-parser\node_modules\has-binary\README.md"
  Delete "$INSTDIR\node_modules\engine.io-parser\node_modules\has-binary\package.json"
  Delete "$INSTDIR\node_modules\engine.io-parser\node_modules\has-binary\Makefile"
  Delete "$INSTDIR\node_modules\engine.io-parser\node_modules\has-binary\LICENSE"
  Delete "$INSTDIR\node_modules\engine.io-parser\node_modules\has-binary\index.js"
  Delete "$INSTDIR\node_modules\engine.io-parser\node_modules\has-binary\History.md"
  Delete "$INSTDIR\node_modules\engine.io-parser\node_modules\has-binary\fixtures\big.json"
  Delete "$INSTDIR\node_modules\engine.io-parser\node_modules\has-binary\.npmignore"
  Delete "$INSTDIR\node_modules\engine.io-parser\Makefile"
  Delete "$INSTDIR\node_modules\engine.io-parser\LICENSE"
  Delete "$INSTDIR\node_modules\engine.io-parser\lib\keys.js"
  Delete "$INSTDIR\node_modules\engine.io-parser\lib\index.js"
  Delete "$INSTDIR\node_modules\engine.io-parser\lib\browser.js"
  Delete "$INSTDIR\node_modules\engine.io-parser\index.js"
  Delete "$INSTDIR\node_modules\engine.io-parser\History.md"
  Delete "$INSTDIR\node_modules\engine.io-parser\.zuul.yml"
  Delete "$INSTDIR\node_modules\engine.io-parser\.travis.yml"
  Delete "$INSTDIR\node_modules\engine.io-parser\.npmignore"
  Delete "$INSTDIR\node_modules\engine.io-client\README.md"
  Delete "$INSTDIR\node_modules\engine.io-client\package.json"
  Delete "$INSTDIR\node_modules\engine.io-client\Makefile"
  Delete "$INSTDIR\node_modules\engine.io-client\LICENSE"
  Delete "$INSTDIR\node_modules\engine.io-client\lib\xmlhttprequest.js"
  Delete "$INSTDIR\node_modules\engine.io-client\lib\transports\websocket.js"
  Delete "$INSTDIR\node_modules\engine.io-client\lib\transports\polling.js"
  Delete "$INSTDIR\node_modules\engine.io-client\lib\transports\polling-xhr.js"
  Delete "$INSTDIR\node_modules\engine.io-client\lib\transports\polling-jsonp.js"
  Delete "$INSTDIR\node_modules\engine.io-client\lib\transports\index.js"
  Delete "$INSTDIR\node_modules\engine.io-client\lib\transport.js"
  Delete "$INSTDIR\node_modules\engine.io-client\lib\socket.js"
  Delete "$INSTDIR\node_modules\engine.io-client\lib\index.js"
  Delete "$INSTDIR\node_modules\engine.io-client\index.js"
  Delete "$INSTDIR\node_modules\engine.io-client\History.md"
  Delete "$INSTDIR\node_modules\engine.io-client\engine.io.js"
  Delete "$INSTDIR\node_modules\engine.io-client\.zuul.yml"
  Delete "$INSTDIR\node_modules\engine.io-client\.travis.yml"
  Delete "$INSTDIR\node_modules\engine.io-client\.npmignore"
  Delete "$INSTDIR\node_modules\engine.io\README.md"
  Delete "$INSTDIR\node_modules\engine.io\package.json"
  Delete "$INSTDIR\node_modules\engine.io\node_modules\negotiator\README.md"
  Delete "$INSTDIR\node_modules\engine.io\node_modules\negotiator\package.json"
  Delete "$INSTDIR\node_modules\engine.io\node_modules\negotiator\LICENSE"
  Delete "$INSTDIR\node_modules\engine.io\node_modules\negotiator\lib\negotiator.js"
  Delete "$INSTDIR\node_modules\engine.io\node_modules\negotiator\lib\mediaType.js"
  Delete "$INSTDIR\node_modules\engine.io\node_modules\negotiator\lib\language.js"
  Delete "$INSTDIR\node_modules\engine.io\node_modules\negotiator\lib\encoding.js"
  Delete "$INSTDIR\node_modules\engine.io\node_modules\negotiator\lib\charset.js"
  Delete "$INSTDIR\node_modules\engine.io\node_modules\mime-types\README.md"
  Delete "$INSTDIR\node_modules\engine.io\node_modules\mime-types\package.json"
  Delete "$INSTDIR\node_modules\engine.io\node_modules\mime-types\LICENSE"
  Delete "$INSTDIR\node_modules\engine.io\node_modules\mime-types\index.js"
  Delete "$INSTDIR\node_modules\engine.io\node_modules\mime-types\HISTORY.md"
  Delete "$INSTDIR\node_modules\engine.io\node_modules\mime-db\README.md"
  Delete "$INSTDIR\node_modules\engine.io\node_modules\mime-db\package.json"
  Delete "$INSTDIR\node_modules\engine.io\node_modules\mime-db\LICENSE"
  Delete "$INSTDIR\node_modules\engine.io\node_modules\mime-db\index.js"
  Delete "$INSTDIR\node_modules\engine.io\node_modules\mime-db\HISTORY.md"
  Delete "$INSTDIR\node_modules\engine.io\node_modules\mime-db\db.json"
  Delete "$INSTDIR\node_modules\engine.io\node_modules\accepts\README.md"
  Delete "$INSTDIR\node_modules\engine.io\node_modules\accepts\package.json"
  Delete "$INSTDIR\node_modules\engine.io\node_modules\accepts\LICENSE"
  Delete "$INSTDIR\node_modules\engine.io\node_modules\accepts\index.js"
  Delete "$INSTDIR\node_modules\engine.io\node_modules\accepts\HISTORY.md"
  Delete "$INSTDIR\node_modules\engine.io\Makefile"
  Delete "$INSTDIR\node_modules\engine.io\LICENSE"
  Delete "$INSTDIR\node_modules\engine.io\lib\transports\websocket.js"
  Delete "$INSTDIR\node_modules\engine.io\lib\transports\polling.js"
  Delete "$INSTDIR\node_modules\engine.io\lib\transports\polling-xhr.js"
  Delete "$INSTDIR\node_modules\engine.io\lib\transports\polling-jsonp.js"
  Delete "$INSTDIR\node_modules\engine.io\lib\transports\index.js"
  Delete "$INSTDIR\node_modules\engine.io\lib\transport.js"
  Delete "$INSTDIR\node_modules\engine.io\lib\socket.js"
  Delete "$INSTDIR\node_modules\engine.io\lib\server.js"
  Delete "$INSTDIR\node_modules\engine.io\lib\engine.io.js"
  Delete "$INSTDIR\node_modules\engine.io\index.js"
  Delete "$INSTDIR\node_modules\engine.io\History.md"
  Delete "$INSTDIR\node_modules\engine.io\.travis.yml"
  Delete "$INSTDIR\node_modules\engine.io\.npmignore"
  Delete "$INSTDIR\node_modules\ee-first\README.md"
  Delete "$INSTDIR\node_modules\ee-first\package.json"
  Delete "$INSTDIR\node_modules\ee-first\LICENSE"
  Delete "$INSTDIR\node_modules\ee-first\index.js"
  Delete "$INSTDIR\node_modules\destroy\README.md"
  Delete "$INSTDIR\node_modules\destroy\package.json"
  Delete "$INSTDIR\node_modules\destroy\LICENSE"
  Delete "$INSTDIR\node_modules\destroy\index.js"
  Delete "$INSTDIR\node_modules\depd\Readme.md"
  Delete "$INSTDIR\node_modules\depd\package.json"
  Delete "$INSTDIR\node_modules\depd\LICENSE"
  Delete "$INSTDIR\node_modules\depd\lib\compat\index.js"
  Delete "$INSTDIR\node_modules\depd\lib\compat\event-listener-count.js"
  Delete "$INSTDIR\node_modules\depd\lib\compat\callsite-tostring.js"
  Delete "$INSTDIR\node_modules\depd\lib\compat\buffer-concat.js"
  Delete "$INSTDIR\node_modules\depd\lib\browser\index.js"
  Delete "$INSTDIR\node_modules\depd\index.js"
  Delete "$INSTDIR\node_modules\depd\History.md"
  Delete "$INSTDIR\node_modules\debug\Readme.md"
  Delete "$INSTDIR\node_modules\debug\package.json"
  Delete "$INSTDIR\node_modules\debug\node.js"
  Delete "$INSTDIR\node_modules\debug\Makefile"
  Delete "$INSTDIR\node_modules\debug\History.md"
  Delete "$INSTDIR\node_modules\debug\debug.js"
  Delete "$INSTDIR\node_modules\debug\component.json"
  Delete "$INSTDIR\node_modules\debug\browser.js"
  Delete "$INSTDIR\node_modules\debug\bower.json"
  Delete "$INSTDIR\node_modules\debug\.npmignore"
  Delete "$INSTDIR\node_modules\debug\.jshintrc"
  Delete "$INSTDIR\node_modules\cookie-signature\Readme.md"
  Delete "$INSTDIR\node_modules\cookie-signature\package.json"
  Delete "$INSTDIR\node_modules\cookie-signature\index.js"
  Delete "$INSTDIR\node_modules\cookie-signature\History.md"
  Delete "$INSTDIR\node_modules\cookie-signature\.npmignore"
  Delete "$INSTDIR\node_modules\cookie\README.md"
  Delete "$INSTDIR\node_modules\cookie\package.json"
  Delete "$INSTDIR\node_modules\cookie\LICENSE"
  Delete "$INSTDIR\node_modules\cookie\index.js"
  Delete "$INSTDIR\node_modules\cookie\HISTORY.md"
  Delete "$INSTDIR\node_modules\content-type\README.md"
  Delete "$INSTDIR\node_modules\content-type\package.json"
  Delete "$INSTDIR\node_modules\content-type\LICENSE"
  Delete "$INSTDIR\node_modules\content-type\index.js"
  Delete "$INSTDIR\node_modules\content-type\HISTORY.md"
  Delete "$INSTDIR\node_modules\content-disposition\README.md"
  Delete "$INSTDIR\node_modules\content-disposition\package.json"
  Delete "$INSTDIR\node_modules\content-disposition\LICENSE"
  Delete "$INSTDIR\node_modules\content-disposition\index.js"
  Delete "$INSTDIR\node_modules\content-disposition\HISTORY.md"
  Delete "$INSTDIR\node_modules\component-inherit\test\inherit.js"
  Delete "$INSTDIR\node_modules\component-inherit\Readme.md"
  Delete "$INSTDIR\node_modules\component-inherit\package.json"
  Delete "$INSTDIR\node_modules\component-inherit\Makefile"
  Delete "$INSTDIR\node_modules\component-inherit\index.js"
  Delete "$INSTDIR\node_modules\component-inherit\History.md"
  Delete "$INSTDIR\node_modules\component-inherit\component.json"
  Delete "$INSTDIR\node_modules\component-inherit\.npmignore"
  Delete "$INSTDIR\node_modules\component-emitter\Readme.md"
  Delete "$INSTDIR\node_modules\component-emitter\package.json"
  Delete "$INSTDIR\node_modules\component-emitter\Makefile"
  Delete "$INSTDIR\node_modules\component-emitter\index.js"
  Delete "$INSTDIR\node_modules\component-emitter\History.md"
  Delete "$INSTDIR\node_modules\component-emitter\component.json"
  Delete "$INSTDIR\node_modules\component-emitter\bower.json"
  Delete "$INSTDIR\node_modules\component-emitter\.travis.yml"
  Delete "$INSTDIR\node_modules\component-emitter\.npmignore"
  Delete "$INSTDIR\node_modules\component-bind\Readme.md"
  Delete "$INSTDIR\node_modules\component-bind\package.json"
  Delete "$INSTDIR\node_modules\component-bind\Makefile"
  Delete "$INSTDIR\node_modules\component-bind\index.js"
  Delete "$INSTDIR\node_modules\component-bind\History.md"
  Delete "$INSTDIR\node_modules\component-bind\component.json"
  Delete "$INSTDIR\node_modules\component-bind\.npmignore"
  Delete "$INSTDIR\node_modules\callsite\Readme.md"
  Delete "$INSTDIR\node_modules\callsite\package.json"
  Delete "$INSTDIR\node_modules\callsite\Makefile"
  Delete "$INSTDIR\node_modules\callsite\index.js"
  Delete "$INSTDIR\node_modules\callsite\History.md"
  Delete "$INSTDIR\node_modules\callsite\.npmignore"
  Delete "$INSTDIR\node_modules\blob\test\index.js"
  Delete "$INSTDIR\node_modules\blob\README.md"
  Delete "$INSTDIR\node_modules\blob\package.json"
  Delete "$INSTDIR\node_modules\blob\Makefile"
  Delete "$INSTDIR\node_modules\blob\index.js"
  Delete "$INSTDIR\node_modules\blob\.zuul.yml"
  Delete "$INSTDIR\node_modules\blob\.npmignore"
  Delete "$INSTDIR\node_modules\better-assert\Readme.md"
  Delete "$INSTDIR\node_modules\better-assert\package.json"
  Delete "$INSTDIR\node_modules\better-assert\Makefile"
  Delete "$INSTDIR\node_modules\better-assert\index.js"
  Delete "$INSTDIR\node_modules\better-assert\History.md"
  Delete "$INSTDIR\node_modules\better-assert\example.js"
  Delete "$INSTDIR\node_modules\better-assert\.npmignore"
  Delete "$INSTDIR\node_modules\benchmark\test\test.js"
  Delete "$INSTDIR\node_modules\benchmark\test\run-test.sh"
  Delete "$INSTDIR\node_modules\benchmark\README.md"
  Delete "$INSTDIR\node_modules\benchmark\package.json"
  Delete "$INSTDIR\node_modules\benchmark\LICENSE.txt"
  Delete "$INSTDIR\node_modules\benchmark\doc\README.md"
  Delete "$INSTDIR\node_modules\benchmark\benchmark.js"
  Delete "$INSTDIR\node_modules\base64id\README.md"
  Delete "$INSTDIR\node_modules\base64id\package.json"
  Delete "$INSTDIR\node_modules\base64id\lib\base64id.js"
  Delete "$INSTDIR\node_modules\base64id\.npmignore"
  Delete "$INSTDIR\node_modules\base64-arraybuffer\test\base64-arraybuffer_test.js"
  Delete "$INSTDIR\node_modules\base64-arraybuffer\README.md~"
  Delete "$INSTDIR\node_modules\base64-arraybuffer\README.md"
  Delete "$INSTDIR\node_modules\base64-arraybuffer\package.json~"
  Delete "$INSTDIR\node_modules\base64-arraybuffer\package.json"
  Delete "$INSTDIR\node_modules\base64-arraybuffer\LICENSE-MIT"
  Delete "$INSTDIR\node_modules\base64-arraybuffer\lib\base64-arraybuffer.js"
  Delete "$INSTDIR\node_modules\base64-arraybuffer\grunt.js"
  Delete "$INSTDIR\node_modules\base64-arraybuffer\.travis.yml"
  Delete "$INSTDIR\node_modules\base64-arraybuffer\.npmignore"
  Delete "$INSTDIR\node_modules\backo2\test\index.js"
  Delete "$INSTDIR\node_modules\backo2\Readme.md"
  Delete "$INSTDIR\node_modules\backo2\package.json"
  Delete "$INSTDIR\node_modules\backo2\Makefile"
  Delete "$INSTDIR\node_modules\backo2\index.js"
  Delete "$INSTDIR\node_modules\backo2\History.md"
  Delete "$INSTDIR\node_modules\backo2\component.json"
  Delete "$INSTDIR\node_modules\backo2\.npmignore"
  Delete "$INSTDIR\node_modules\arraybuffer.slice\test\slice-buffer.js"
  Delete "$INSTDIR\node_modules\arraybuffer.slice\README.md"
  Delete "$INSTDIR\node_modules\arraybuffer.slice\package.json"
  Delete "$INSTDIR\node_modules\arraybuffer.slice\Makefile"
  Delete "$INSTDIR\node_modules\arraybuffer.slice\index.js"
  Delete "$INSTDIR\node_modules\arraybuffer.slice\.npmignore"
  Delete "$INSTDIR\node_modules\array-flatten\README.md"
  Delete "$INSTDIR\node_modules\array-flatten\package.json"
  Delete "$INSTDIR\node_modules\array-flatten\LICENSE"
  Delete "$INSTDIR\node_modules\array-flatten\array-flatten.js"
  Delete "$INSTDIR\node_modules\after\test\after-test.js"
  Delete "$INSTDIR\node_modules\after\README.md"
  Delete "$INSTDIR\node_modules\after\package.json"
  Delete "$INSTDIR\node_modules\after\LICENCE"
  Delete "$INSTDIR\node_modules\after\index.js"
  Delete "$INSTDIR\node_modules\after\.travis.yml"
  Delete "$INSTDIR\node_modules\after\.npmignore"
  Delete "$INSTDIR\node_modules\accepts\README.md"
  Delete "$INSTDIR\node_modules\accepts\package.json"
  Delete "$INSTDIR\node_modules\accepts\LICENSE"
  Delete "$INSTDIR\node_modules\accepts\index.js"
  Delete "$INSTDIR\node_modules\accepts\HISTORY.md"
  Delete "$INSTDIR\node_modules\.bin\mime.cmd"
  Delete "$INSTDIR\node_modules\.bin\mime"
  Delete "$INSTDIR\node.exe"
  Delete "$INSTDIR\dist\main.js"
  Delete "$INSTDIR\dist\index.html"
  Delete "$INSTDIR\dist\app\img\virus.png"
  Delete "$INSTDIR\dist\app\img\split.png"
  Delete "$INSTDIR\dist\app\img\grid.png"
  Delete "$INSTDIR\dist\app\img\feed.png"
  Delete "$INSTDIR\dist\app\audio\split.mp3"
  Delete "$INSTDIR\dist\app\audio\spawn.mp3"
  Delete "$INSTDIR\config.json"

  Delete "$SMPROGRAMS\agar.io-clone\Uninstall.lnk"
  Delete "$SMPROGRAMS\agar.io-clone\agar.io-clone.lnk"

  RMDir "$SMPROGRAMS\agar.io-clone"
  RMDir "$INSTDIR\server\lib"
  RMDir "$INSTDIR\server"
  RMDir "$INSTDIR\node_modules\yeast"
  RMDir "$INSTDIR\node_modules\xmlhttprequest-ssl\tests"
  RMDir "$INSTDIR\node_modules\xmlhttprequest-ssl\lib"
  RMDir "$INSTDIR\node_modules\xmlhttprequest-ssl\example"
  RMDir "$INSTDIR\node_modules\xmlhttprequest-ssl"
  RMDir "$INSTDIR\node_modules\ws\lib"
  RMDir "$INSTDIR\node_modules\ws"
  RMDir "$INSTDIR\node_modules\vary"
  RMDir "$INSTDIR\node_modules\utils-merge"
  RMDir "$INSTDIR\node_modules\utf8\tests"
  RMDir "$INSTDIR\node_modules\utf8"
  RMDir "$INSTDIR\node_modules\unpipe"
  RMDir "$INSTDIR\node_modules\ultron"
  RMDir "$INSTDIR\node_modules\type-is"
  RMDir "$INSTDIR\node_modules\to-array"
  RMDir "$INSTDIR\node_modules\statuses"
  RMDir "$INSTDIR\node_modules\socket.io-parser\node_modules\json3\lib"
  RMDir "$INSTDIR\node_modules\socket.io-parser\node_modules\json3"
  RMDir "$INSTDIR\node_modules\socket.io-parser\node_modules"
  RMDir "$INSTDIR\node_modules\socket.io-parser\bench"
  RMDir "$INSTDIR\node_modules\socket.io-parser"
  RMDir "$INSTDIR\node_modules\socket.io-client\node_modules\component-emitter"
  RMDir "$INSTDIR\node_modules\socket.io-client\node_modules"
  RMDir "$INSTDIR\node_modules\socket.io-client\lib"
  RMDir "$INSTDIR\node_modules\socket.io-client"
  RMDir "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser\node_modules\debug\lib"
  RMDir "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser\node_modules\debug"
  RMDir "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser\node_modules"
  RMDir "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser\bench"
  RMDir "$INSTDIR\node_modules\socket.io-adapter\node_modules\socket.io-parser"
  RMDir "$INSTDIR\node_modules\socket.io-adapter\node_modules"
  RMDir "$INSTDIR\node_modules\socket.io-adapter"
  RMDir "$INSTDIR\node_modules\socket.io\lib"
  RMDir "$INSTDIR\node_modules\socket.io"
  RMDir "$INSTDIR\node_modules\simple-quadtree\test"
  RMDir "$INSTDIR\node_modules\simple-quadtree"
  RMDir "$INSTDIR\node_modules\serve-static"
  RMDir "$INSTDIR\node_modules\send"
  RMDir "$INSTDIR\node_modules\sat\examples"
  RMDir "$INSTDIR\node_modules\sat"
  RMDir "$INSTDIR\node_modules\range-parser"
  RMDir "$INSTDIR\node_modules\qs\test"
  RMDir "$INSTDIR\node_modules\qs\lib"
  RMDir "$INSTDIR\node_modules\qs"
  RMDir "$INSTDIR\node_modules\proxy-addr"
  RMDir "$INSTDIR\node_modules\path-to-regexp"
  RMDir "$INSTDIR\node_modules\parseurl"
  RMDir "$INSTDIR\node_modules\parseuri"
  RMDir "$INSTDIR\node_modules\parseqs"
  RMDir "$INSTDIR\node_modules\parsejson"
  RMDir "$INSTDIR\node_modules\options\lib"
  RMDir "$INSTDIR\node_modules\options"
  RMDir "$INSTDIR\node_modules\on-finished"
  RMDir "$INSTDIR\node_modules\object-component\test"
  RMDir "$INSTDIR\node_modules\object-component"
  RMDir "$INSTDIR\node_modules\negotiator\lib"
  RMDir "$INSTDIR\node_modules\negotiator"
  RMDir "$INSTDIR\node_modules\ms"
  RMDir "$INSTDIR\node_modules\mime-types"
  RMDir "$INSTDIR\node_modules\mime-db"
  RMDir "$INSTDIR\node_modules\mime\build"
  RMDir "$INSTDIR\node_modules\mime"
  RMDir "$INSTDIR\node_modules\methods"
  RMDir "$INSTDIR\node_modules\merge-descriptors"
  RMDir "$INSTDIR\node_modules\media-typer"
  RMDir "$INSTDIR\node_modules\json3\lib"
  RMDir "$INSTDIR\node_modules\json3\coverage\lcov-report\lib"
  RMDir "$INSTDIR\node_modules\json3\coverage\lcov-report"
  RMDir "$INSTDIR\node_modules\json3\coverage"
  RMDir "$INSTDIR\node_modules\json3"
  RMDir "$INSTDIR\node_modules\isarray\build"
  RMDir "$INSTDIR\node_modules\isarray"
  RMDir "$INSTDIR\node_modules\ipaddr.js\test"
  RMDir "$INSTDIR\node_modules\ipaddr.js\src"
  RMDir "$INSTDIR\node_modules\ipaddr.js\lib"
  RMDir "$INSTDIR\node_modules\ipaddr.js"
  RMDir "$INSTDIR\node_modules\inherits"
  RMDir "$INSTDIR\node_modules\indexof"
  RMDir "$INSTDIR\node_modules\http-errors"
  RMDir "$INSTDIR\node_modules\has-cors"
  RMDir "$INSTDIR\node_modules\has-binary"
  RMDir "$INSTDIR\node_modules\fresh"
  RMDir "$INSTDIR\node_modules\forwarded"
  RMDir "$INSTDIR\node_modules\finalhandler"
  RMDir "$INSTDIR\node_modules\express\lib\router"
  RMDir "$INSTDIR\node_modules\express\lib\middleware"
  RMDir "$INSTDIR\node_modules\express\lib"
  RMDir "$INSTDIR\node_modules\express"
  RMDir "$INSTDIR\node_modules\etag"
  RMDir "$INSTDIR\node_modules\escape-html"
  RMDir "$INSTDIR\node_modules\engine.io-parser\node_modules\has-binary\fixtures"
  RMDir "$INSTDIR\node_modules\engine.io-parser\node_modules\has-binary"
  RMDir "$INSTDIR\node_modules\engine.io-parser\node_modules"
  RMDir "$INSTDIR\node_modules\engine.io-parser\lib"
  RMDir "$INSTDIR\node_modules\engine.io-parser"
  RMDir "$INSTDIR\node_modules\engine.io-client\lib\transports"
  RMDir "$INSTDIR\node_modules\engine.io-client\lib"
  RMDir "$INSTDIR\node_modules\engine.io-client"
  RMDir "$INSTDIR\node_modules\engine.io\node_modules\negotiator\lib"
  RMDir "$INSTDIR\node_modules\engine.io\node_modules\negotiator"
  RMDir "$INSTDIR\node_modules\engine.io\node_modules\mime-types"
  RMDir "$INSTDIR\node_modules\engine.io\node_modules\mime-db"
  RMDir "$INSTDIR\node_modules\engine.io\node_modules\accepts"
  RMDir "$INSTDIR\node_modules\engine.io\node_modules"
  RMDir "$INSTDIR\node_modules\engine.io\lib\transports"
  RMDir "$INSTDIR\node_modules\engine.io\lib"
  RMDir "$INSTDIR\node_modules\engine.io"
  RMDir "$INSTDIR\node_modules\ee-first"
  RMDir "$INSTDIR\node_modules\destroy"
  RMDir "$INSTDIR\node_modules\depd\lib\compat"
  RMDir "$INSTDIR\node_modules\depd\lib\browser"
  RMDir "$INSTDIR\node_modules\depd\lib"
  RMDir "$INSTDIR\node_modules\depd"
  RMDir "$INSTDIR\node_modules\debug"
  RMDir "$INSTDIR\node_modules\cookie-signature"
  RMDir "$INSTDIR\node_modules\cookie"
  RMDir "$INSTDIR\node_modules\content-type"
  RMDir "$INSTDIR\node_modules\content-disposition"
  RMDir "$INSTDIR\node_modules\component-inherit\test"
  RMDir "$INSTDIR\node_modules\component-inherit"
  RMDir "$INSTDIR\node_modules\component-emitter"
  RMDir "$INSTDIR\node_modules\component-bind"
  RMDir "$INSTDIR\node_modules\callsite"
  RMDir "$INSTDIR\node_modules\blob\test"
  RMDir "$INSTDIR\node_modules\blob"
  RMDir "$INSTDIR\node_modules\better-assert"
  RMDir "$INSTDIR\node_modules\benchmark\test"
  RMDir "$INSTDIR\node_modules\benchmark\doc"
  RMDir "$INSTDIR\node_modules\benchmark"
  RMDir "$INSTDIR\node_modules\base64id\lib"
  RMDir "$INSTDIR\node_modules\base64id"
  RMDir "$INSTDIR\node_modules\base64-arraybuffer\test"
  RMDir "$INSTDIR\node_modules\base64-arraybuffer\lib"
  RMDir "$INSTDIR\node_modules\base64-arraybuffer"
  RMDir "$INSTDIR\node_modules\backo2\test"
  RMDir "$INSTDIR\node_modules\backo2"
  RMDir "$INSTDIR\node_modules\array-flatten"
  RMDir "$INSTDIR\node_modules\arraybuffer.slice\test"
  RMDir "$INSTDIR\node_modules\arraybuffer.slice"
  RMDir "$INSTDIR\node_modules\after\test"
  RMDir "$INSTDIR\node_modules\after"
  RMDir "$INSTDIR\node_modules\accepts"
  RMDir "$INSTDIR\node_modules\.bin"
  RMDir "$INSTDIR\node_modules"
  RMDir "$INSTDIR\dist\app\img"
  RMDir "$INSTDIR\dist\app\audio"
  RMDir "$INSTDIR\dist\app"
  RMDir "$INSTDIR\dist"
  RMDir "$INSTDIR"

  DeleteRegKey ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}"
  DeleteRegKey HKLM "${PRODUCT_DIR_REGKEY}"
  SetAutoClose true
SectionEnd

Then right-click the installer.nsi and click on Compile Unicode NSIS Script. Now you've a agar.io-clone.exe which is the installer.

ghost avatar May 07 '16 06:05 ghost