{"maintainers":[{"name":"anonymous","email":"andi.neck@intesso.com"}],"keywords":["connect","livereload","live-reload"],"dist-tags":{"latest":"0.6.1"},"author":{"name":"Andi Neck","email":"andi.neck@intesso.com"},"description":"connect middleware for adding the livereload script to the response","readme":"\nconnect-livereload\n==================\nconnect middleware for adding the livereload script to the response.\nno browser plugin is needed.\nif you are happy with a browser plugin, then you don't need this middleware.\n\n[![NPM](https://nodei.co/npm/connect-livereload.png?downloads=true&downloadRank=true)](https://nodei.co/npm-dl/connect-livereload/)\n\n\n[![Build Status](https://travis-ci.org/intesso/connect-livereload.png)](https://travis-ci.org/intesso/connect-livereload)\n[![Coverage Status](https://coveralls.io/repos/intesso/connect-livereload/badge.svg)](https://coveralls.io/r/intesso/connect-livereload)\n\n\ninstall\n=======\n```bash\nnpm install connect-livereload --save-dev\n```\n\nuse\n===\nnote: if you use this middleware, you should make sure to switch off the Browser LiveReload Extension if you have it installed.\n\nthis middleware can be used with a LiveReload module e.g. [grunt-contrib-connect](https://github.com/gruntjs/grunt-contrib-connect) or [grunt-contrib-watch](https://github.com/gruntjs/grunt-contrib-watch).\n\n`connect-livereload` itself does not serve the `livereload.js` script.\n\nIn your connect or express application add this after the static and before the dynamic routes.\nIf you need liveReload on static html files, then place it before the static routes.\n`ignore` gives you the possibility to ignore certain files or url's from being handled by `connect-livereload`.\n\n## connect/express example\n```javascript\n  app.use(require('connect-livereload')({\n    port: 35729\n  }));\n```\n\nplease see the [examples](https://github.com/intesso/connect-livereload/tree/master/examples) for the app and Grunt configuration.\n\n## options\nOptions are not mandatory: `app.use(require('connect-livereload')());`\nThe Options have to be provided when the middleware is loaded:\n\ne.g.:\n```\n  app.use(require('connect-livereload')({\n    port: 35729,\n    ignore: ['.js', '.svg']\n  }));\n\n```\n\nThese are the available options with the following defaults:\n\n```javascript\n  // `ignore` and `include`: array with strings and regex expressions elements.\n  // strings: included/ignored when the url contains this string\n  // regex: any expression: e.g. starts with pattern: /^.../ ends with pattern: /...$/\n  ignore: [\n    /\\.js(\\?.*)?$/, /\\.css(\\?.*)?$/, /\\.svg(\\?.*)?$/, /\\.ico(\\?.*)?$/, /\\.woff(\\?.*)?$/,\n    /\\.png(\\?.*)?$/, /\\.jpg(\\?.*)?$/, /\\.jpeg(\\?.*)?$/, /\\.gif(\\?.*)?$/, /\\.pdf(\\?.*)?$/\n  ],\n\n  // include all urls by default\n  include: [/.*/],\n\n  // this function is used to determine if the content of `res.write` or `res.end` is html.\n  html: function (str) {\n    if (!str) return false;\n    return /<[:_-\\w\\s\\!\\/\\=\\\"\\']+>/i.test(str);\n  },\n\n  // rules are provided to find the place where the snippet should be inserted.\n  // the main problem is that on the server side it can be tricky to determine if a string will be valid html on the client.\n  // the function `fn` of the first `match` is executed like this `body.replace(rule.match, rule.fn);`\n  // the function `fn` has got the arguments `fn(w, s)` where `w` is the matches string and `s` is the snippet.\n  rules: [{\n    match: /<\\/body>(?![\\s\\S]*<\\/body>)/i,\n    fn: prepend\n  }, {\n    match: /<\\/html>(?![\\s\\S]*<\\/html>)/i,\n    fn: prepend\n  }, {\n    match: /<\\!DOCTYPE.+?>/i,\n    fn: append\n  }],\n\n  // port where the script is loaded\n  port: 35729,\n\n  // location where the script is provided (not by connect-livereload). Change this e.g. when serving livereload with a proxy.\n  src: \"http://localhost:35729/livereload.js?snipver=1\",\n\n  // Set this option to `true` to set `req.headers['accept-encoding']` to 'identity' (disabling compression)\n  disableCompression: false,\n\n  // Locations where livereload plugins are provided (not by connect-livereload).\n  // These plugins should handle being loaded before _or_ after the livereload\n  // script itself (the order is not guaranteed), like\n  // https://github.com/mixmaxhq/livereload-require-js-includes/blob/5a431793d6fdfcf93d66814ddc58338515a3254f/index.js#L40-L45\n  plugins: [\n    \"http://localhost:3001/livereload-require-js-includes/index.js\"\n  ]\n```\n\nplease see the [examples](https://github.com/intesso/connect-livereload/tree/master/examples) for the app and Grunt configuration.\n\n\n## grunt example\n\nThe following example is from an actual Gruntfile that uses [grunt-contrib-connect](https://github.com/gruntjs/grunt-contrib-connect)\n\n```javascript\nconnect: {\n  options: {\n    port: 3000,\n    hostname: 'localhost'\n  },\n  dev: {\n    options: {\n      middleware: function (connect) {\n        return [\n          require('connect-livereload')(), // <--- here\n          checkForDownload,\n          mountFolder(connect, '.tmp'),\n          mountFolder(connect, 'app')\n        ];\n      }\n    }\n  }\n}\n```\nFor use as middleware in grunt simply add the following to the **top** of your array of middleware.\n\n```javascript\n  require('connect-livereload')(),\n```\nYou can pass in options to this call if you do not want the defaults.\n\n`dev` is simply the name of the server being used with the task `grunt connect:dev`. The other items in the `middleware` array are all functions that either are of the form `function (req, res, next)` like `checkForDownload` or return that like `mountFolder(connect, 'something')`.\n\nalternative\n===========\nAn alternative would be to install the [LiveReload browser plugin](https://chrome.google.com/webstore/detail/livereload/jnihajbhpnppcggbcgedagnkighmdlei).\n\n\ncredits\n=======\n* The initial middleware code was mainly extracted from: [grunt-contrib-livereload/util.js](https://github.com/gruntjs/grunt-contrib-livereload/blob/master/lib/utils.js)\n* [LiveReload Creator](http://livereload.com/)\n\ntests\n=====\nrun the tests with\n```\nmocha\n```\n\nlicense\n=======\n[MIT License](https://github.com/intesso/connect-livereload/blob/master/LICENSE)\n","repository":{"type":"git","url":"git://github.com/intesso/connect-livereload.git"},"users":{"jalcine":true,"skyborn":true,"weijarz":true,"csbun":true,"raiseandfall":true,"tzsiga":true,"fkamani":true,"thierrymarianne":true,"rdesoky":true,"maxz":true,"zhanghaili":true,"igsys":true,"akodevs":true,"drewigg":true,"larrychen":true,"rubiadias":true},"bugs":{"url":"https://github.com/intesso/connect-livereload/issues"},"license":"MIT","versions":{"0.0.2":{"name":"connect-livereload","description":"connect middleware for adding the livereload script to the response","version":"0.0.2","author":{"name":"Andi Neck","email":"andi.neck@intesso.com"},"contributors":[{"name":"Andi Neck","email":"andi.neck@intesso.com"}],"dependencies":{},"devDependencies":{},"keywords":["connect","livereload","live-reload"],"repository":{"type":"git","url":"git://github.com/intesso/connect-livereload"},"main":"index","engines":{"node":"*"},"_id":"connect-livereload@0.0.2","dist":{"shasum":"db7094ac5c18a8b738a6d274d33f1a80ee71807e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/connect-livereload/-/connect-livereload-0.0.2.tgz","integrity":"sha512-yrIROwAzwTIRzHggE115MPVmHSyzOSUDIIYPELS1IpLVj6PVI25DyjADpTQNp8UM56xzT+R4ZwbvPa79X5DfZg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC8wYgU1I3Rr4lvNlE+XBSMYDfxfSykK4RhpWv+04r1yQIgKRY/tnUMPdVeRFjgx4D+yVxkKq+WaRu4tZ8rv7KWJoA="}]},"maintainers":[{"name":"anonymous","email":"andi.neck@intesso.com"}],"directories":{}},"0.0.3":{"name":"connect-livereload","description":"connect middleware for adding the livereload script to the response","version":"0.0.3","author":{"name":"Andi Neck","email":"andi.neck@intesso.com"},"contributors":[{"name":"Andi Neck","email":"andi.neck@intesso.com"}],"dependencies":{},"devDependencies":{},"keywords":["connect","livereload","live-reload"],"repository":{"type":"git","url":"git://github.com/intesso/connect-livereload"},"main":"index","engines":{"node":"*"},"_id":"connect-livereload@0.0.3","dist":{"shasum":"131d1ff2c30276358456a527a5b9ba75ce209f20","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/connect-livereload/-/connect-livereload-0.0.3.tgz","integrity":"sha512-Tvgwg5CUfiYbngWHrQ8NyIMibrAvei4tQep6nnMx4f/QUqcylBxPvvkQHghAXAB5hVa8ByNubsYfjPq6uxrhUg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIATCuOcmIonF8WY3qZnyi3is3l/suHLGI002U6lBgSgpAiAxaaGimi2onXCrhjQUygJbNwmTFamwyAOPQqGtlpSH9Q=="}]},"maintainers":[{"name":"anonymous","email":"andi.neck@intesso.com"}],"directories":{}},"0.1.0":{"name":"connect-livereload","description":"connect middleware for adding the livereload script to the response","version":"0.1.0","author":{"name":"Andi Neck","email":"andi.neck@intesso.com"},"contributors":[{"name":"Andi Neck","email":"andi.neck@intesso.com"}],"dependencies":{},"devDependencies":{},"keywords":["connect","livereload","live-reload"],"repository":{"type":"git","url":"git://github.com/intesso/connect-livereload"},"main":"index","engines":{"node":"*"},"_id":"connect-livereload@0.1.0","dist":{"shasum":"750fd1db3dfc8a0c61037ae921977d6e3b7584b4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/connect-livereload/-/connect-livereload-0.1.0.tgz","integrity":"sha512-BsNZYMTu/biZhQuy+ebqiSTSC+imIUtLlsbQtc7snlY/+Dpx9Fr/j9Vd4VQ/TgJ61hjKffFJ7VIbLD79wmfXxw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCRxmg2KS+UGxTxKEuT5mmDiIcvsgZRNhboPKdWCF75owIhAL2EdMLZcpuPhGU8RW+IFnw43S3Y1SCXyiSiGgYoohBG"}]},"maintainers":[{"name":"anonymous","email":"andi.neck@intesso.com"}],"directories":{}},"0.1.1":{"name":"connect-livereload","description":"connect middleware for adding the livereload script to the response","version":"0.1.1","author":{"name":"Andi Neck","email":"andi.neck@intesso.com"},"contributors":[{"name":"Andi Neck","email":"andi.neck@intesso.com"}],"dependencies":{},"devDependencies":{},"keywords":["connect","livereload","live-reload"],"repository":{"type":"git","url":"git://github.com/intesso/connect-livereload"},"main":"index","engines":{"node":"*"},"_id":"connect-livereload@0.1.1","dist":{"shasum":"47f8752181bcc250934cbbb6402553bbf5fb4ea3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/connect-livereload/-/connect-livereload-0.1.1.tgz","integrity":"sha512-17aWm1M99ul4JOU3M97ig3ErJQnjYcdt+ZZWwoGeG2zAjOVfiI90sN9bTKI5kC+bhJ5B49RrFaOYUHcClIqPIQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH3Gue0YVTOQarvtyuQyk2e5z7Ds41vzvbl83C8csrT9AiAG/nkeooifw7bTpqEOPSnifEF64Kvz0mKPEya3RfY1aw=="}]},"maintainers":[{"name":"anonymous","email":"andi.neck@intesso.com"}],"directories":{}},"0.1.2":{"name":"connect-livereload","description":"connect middleware for adding the livereload script to the response","version":"0.1.2","author":{"name":"Andi Neck","email":"andi.neck@intesso.com"},"contributors":[{"name":"Andi Neck","email":"andi.neck@intesso.com"}],"dependencies":{},"devDependencies":{},"keywords":["connect","livereload","live-reload"],"repository":{"type":"git","url":"git://github.com/intesso/connect-livereload"},"main":"index","engines":{"node":"*"},"_id":"connect-livereload@0.1.2","dist":{"shasum":"c67b31cdae1c982aadef06f0dff7ab4cc8c36372","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/connect-livereload/-/connect-livereload-0.1.2.tgz","integrity":"sha512-wZkI4bQ4Rcs3jHlQVUvhFZJEohhouYITpfkTMQ0zDouGxnBiAsTdN/dXWyzP3jX5r6g7uaeDOo+hSPD8I97xEw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC3A47ZFTSbuk+hY1iqLkeOHdIcO3s8hsdD4Noz+SusJAiEAvH/Wpv72vAhMR1s9FWEH+761D5k0BFE1wbWde0+S+zE="}]},"maintainers":[{"name":"anonymous","email":"andi.neck@intesso.com"}],"directories":{}},"0.1.3":{"name":"connect-livereload","description":"connect middleware for adding the livereload script to the response","version":"0.1.3","author":{"name":"Andi Neck","email":"andi.neck@intesso.com"},"contributors":[{"name":"Andi Neck","email":"andi.neck@intesso.com"}],"dependencies":{},"devDependencies":{"express":"~3.2.2","supertest":"~0.6.0","mocha":"~1.9.0"},"keywords":["connect","livereload","live-reload"],"repository":{"type":"git","url":"git://github.com/intesso/connect-livereload"},"main":"index","engines":{"node":"*"},"_id":"connect-livereload@0.1.3","dist":{"shasum":"10c231440170a448c2133ddaf3f07e1e7a55a7a0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/connect-livereload/-/connect-livereload-0.1.3.tgz","integrity":"sha512-Lh1UYRmAv/rS4wfeUfmwcW5PUjm80VLknLHgKzcVmYdCgVOWY3n2ttdXj+3sA0z8XfkQ6lwct3frWoaPKvXxDA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDJTc2Dj672ERxDKtLJqFF0aAXABfmkyfVLz8YxPBp2JwIhAIkobVpZb0yPemsOrUvRr1wzqL5fRNJDluhXSI1tmPe2"}]},"maintainers":[{"name":"anonymous","email":"andi.neck@intesso.com"}],"directories":{}},"0.1.4":{"name":"connect-livereload","description":"connect middleware for adding the livereload script to the response","version":"0.1.4","author":{"name":"Andi Neck","email":"andi.neck@intesso.com"},"contributors":[{"name":"Andi Neck","email":"andi.neck@intesso.com"}],"dependencies":{},"devDependencies":{"express":"~3.2.2","supertest":"~0.6.0","mocha":"~1.9.0"},"keywords":["connect","livereload","live-reload"],"repository":{"type":"git","url":"git://github.com/intesso/connect-livereload"},"main":"index","engines":{"node":"*"},"_id":"connect-livereload@0.1.4","dist":{"shasum":"ef697fbb832c6466697385a5e18ec32927e9fdee","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/connect-livereload/-/connect-livereload-0.1.4.tgz","integrity":"sha512-QmRPc9ZW7F5CuaIMf3ceWSBr/2DEvmwk3IzuZnBUMdSxohGnlcqxlKMRpGMN6PiAO/hqNWKNb38nq/p8A0beCw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGyDC/2uttgb7Zy/iWcR5VeoKlu0WV7DwGE+J4Z2iTg7AiEAuvuJYQjoVrmXoLDO+W6cf+6Udl5nVWQHfxsaExyo1Z0="}]},"maintainers":[{"name":"anonymous","email":"andi.neck@intesso.com"}],"directories":{}},"0.2.0":{"name":"connect-livereload","description":"connect middleware for adding the livereload script to the response","version":"0.2.0","author":{"name":"Andi Neck","email":"andi.neck@intesso.com"},"contributors":[{"name":"Andi Neck","email":"andi.neck@intesso.com"}],"dependencies":{},"devDependencies":{"express":"~3.2.2","supertest":"~0.6.0","mocha":"~1.9.0"},"keywords":["connect","livereload","live-reload"],"repository":{"type":"git","url":"git://github.com/intesso/connect-livereload"},"main":"index","engines":{"node":"*"},"_id":"connect-livereload@0.2.0","dist":{"shasum":"7573cf587846dffd02a3e65e3122b470dd615ec9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/connect-livereload/-/connect-livereload-0.2.0.tgz","integrity":"sha512-yiaENbl5xNL2DciS70bWwc1XWVcMoEJauU9Jtm9W4hb/Wre7jLJv2/+/YrfNQSle2x9Vfjym+9YzFBSeG30Oug==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICzSR1anliW01tCzb2xPjkkuA0VtdcVOpy61Ygw33AasAiAxT5yzt4CbGxlxcckXw+tuqd0SMKO3tmt9+vQ4b3d83g=="}]},"maintainers":[{"name":"anonymous","email":"andi.neck@intesso.com"}],"directories":{}},"0.3.0":{"name":"connect-livereload","description":"connect middleware for adding the livereload script to the response","version":"0.3.0","author":{"name":"Andi Neck","email":"andi.neck@intesso.com"},"contributors":[{"name":"Andi Neck","email":"andi.neck@intesso.com"}],"dependencies":{},"devDependencies":{"express":"~3.2.2","supertest":"~0.6.0","mocha":"~1.9.0"},"keywords":["connect","livereload","live-reload"],"repository":{"type":"git","url":"git://github.com/intesso/connect-livereload"},"main":"index","engines":{"node":"*"},"bugs":{"url":"https://github.com/intesso/connect-livereload/issues"},"_id":"connect-livereload@0.3.0","dist":{"shasum":"938334f2211f1f971bbf9f901f31ff9a1d6a3c7a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/connect-livereload/-/connect-livereload-0.3.0.tgz","integrity":"sha512-MGhVPFJptkvYNfUBWvMXHCISfx0ASZeDlOO/byCZXWQGndn2jvUwf0z/yXlPUab8LjULUjVs8zyVDo/7pepiiA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCbXtUFyqqB8yXtaYS6LeTdLUjMmc/FrBh5cp03VF1efQIgdPYm/vmPsl3f0+F1JkAm/g8CWW9jFDObZE2Wpwjs6P0="}]},"_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"anonymous","email":"andi.neck@intesso.com"},"maintainers":[{"name":"anonymous","email":"andi.neck@intesso.com"}],"directories":{}},"0.3.1":{"name":"connect-livereload","description":"connect middleware for adding the livereload script to the response","version":"0.3.1","author":{"name":"Andi Neck","email":"andi.neck@intesso.com"},"contributors":[{"name":"Andi Neck","email":"andi.neck@intesso.com"}],"dependencies":{},"devDependencies":{"express":"~3.2.2","supertest":"~0.6.0","mocha":"~1.9.0"},"keywords":["connect","livereload","live-reload"],"repository":{"type":"git","url":"git://github.com/intesso/connect-livereload"},"main":"index","engines":{"node":"*"},"bugs":{"url":"https://github.com/intesso/connect-livereload/issues"},"homepage":"https://github.com/intesso/connect-livereload","_id":"connect-livereload@0.3.1","dist":{"shasum":"e4622f8742eae86e0aa998785df888cd7ed443f0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/connect-livereload/-/connect-livereload-0.3.1.tgz","integrity":"sha512-NypkTUvoZYhX4GcFZHrrt2CXtweO/K9sekFNSPHluG7tAnTZVMFz2qlUOelrtL+9wvzgNq9iXjgXOP+FMKndwA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBoMHRSQWoZkzBqRMAGfrhh54nobZqkVVmJekysl2jWzAiEA93HDq6FYLJKh3BpA/5HJE0twSrN/teFlgM0rS9Peb04="}]},"_from":".","_npmVersion":"1.3.14","_npmUser":{"name":"anonymous","email":"andi.neck@intesso.com"},"maintainers":[{"name":"anonymous","email":"andi.neck@intesso.com"}],"directories":{}},"0.3.2":{"name":"connect-livereload","description":"connect middleware for adding the livereload script to the response","version":"0.3.2","author":{"name":"Andi Neck","email":"andi.neck@intesso.com"},"contributors":[{"name":"Andi Neck","email":"andi.neck@intesso.com"}],"dependencies":{},"devDependencies":{"express":"~3.2.2","supertest":"~0.6.0","mocha":"~1.9.0"},"keywords":["connect","livereload","live-reload"],"repository":{"type":"git","url":"git://github.com/intesso/connect-livereload"},"main":"index","engines":{"node":"*"},"bugs":{"url":"https://github.com/intesso/connect-livereload/issues"},"homepage":"https://github.com/intesso/connect-livereload","_id":"connect-livereload@0.3.2","dist":{"shasum":"ddb70aa50901d583783662770e3d3b63d7ce40ff","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/connect-livereload/-/connect-livereload-0.3.2.tgz","integrity":"sha512-6zcTZQwXgUVueZ9sScPD8VQ9xCdsmNg2OJMp/VHP12rctysxv+SOhoQ+qrlGCAelcveX2FmjIMzITKbR58lBVQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBw9v7OuypgkiVu53kBRA2X/NhyNFaLyInjSEjShfAAqAiBt9OIhPn6E7AuG0wHBxECxAjpzQShPkPjA7paStuGblA=="}]},"_from":".","_npmVersion":"1.3.14","_npmUser":{"name":"anonymous","email":"andi.neck@intesso.com"},"maintainers":[{"name":"anonymous","email":"andi.neck@intesso.com"}],"directories":{}},"0.4.0":{"name":"connect-livereload","description":"connect middleware for adding the livereload script to the response","version":"0.4.0","author":{"name":"Andi Neck","email":"andi.neck@intesso.com"},"contributors":[{"name":"Andi Neck","email":"andi.neck@intesso.com"}],"dependencies":{},"devDependencies":{"express":"~3.2.2","supertest":"~0.6.0","mocha":"~1.9.0"},"keywords":["connect","livereload","live-reload"],"repository":{"type":"git","url":"git://github.com/intesso/connect-livereload"},"main":"index","engines":{"node":"*"},"bugs":{"url":"https://github.com/intesso/connect-livereload/issues"},"homepage":"https://github.com/intesso/connect-livereload","_id":"connect-livereload@0.4.0","dist":{"shasum":"9e5bbef31e7542ef5e12cab742143bbf7636e317","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/connect-livereload/-/connect-livereload-0.4.0.tgz","integrity":"sha512-pd3zjtbn5EWR1ERZdDLHuQRXRyd/+8weZ8mJhPqFM6d776NyO80pqVAQ8fu6TIUzHTtyTFcG4MDCaNGlvJY8Hw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDvAonzXHqrJGkONlvDSIwsktu4QiJJci0UhOObnxbk3gIhAJGxfGCYfepaMgPCjtLcACzO0uvnIQicjAM4WxKwXEUr"}]},"_from":".","_npmVersion":"1.3.14","_npmUser":{"name":"anonymous","email":"andi.neck@intesso.com"},"maintainers":[{"name":"anonymous","email":"andi.neck@intesso.com"}],"directories":{}},"0.4.1":{"name":"connect-livereload","description":"connect middleware for adding the livereload script to the response","version":"0.4.1","author":{"name":"Andi Neck","email":"andi.neck@intesso.com"},"contributors":[{"name":"Andi Neck","email":"andi.neck@intesso.com"}],"scripts":{"test":"mocha --reporter spec"},"dependencies":{},"devDependencies":{"express":"~3.2.2","supertest":"~0.6.0","mocha":"~1.9.0"},"keywords":["connect","livereload","live-reload"],"repository":{"type":"git","url":"git://github.com/intesso/connect-livereload"},"main":"index","engines":{"node":"*"},"gitHead":"cac15c971bd8786b2564a1066b6a99bb268cba38","bugs":{"url":"https://github.com/intesso/connect-livereload/issues"},"homepage":"https://github.com/intesso/connect-livereload","_id":"connect-livereload@0.4.1","_shasum":"0f8a1a816bc9baffae4637ccea917462fe35917a","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"anonymous","email":"andi.neck@intesso.com"},"maintainers":[{"name":"anonymous","email":"andi.neck@intesso.com"}],"dist":{"shasum":"0f8a1a816bc9baffae4637ccea917462fe35917a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/connect-livereload/-/connect-livereload-0.4.1.tgz","integrity":"sha512-y/4fDdcveHQsVXTJeAr8HHLwul5M3VI071pEaov/jiCz2HIrmZynFHuOn1CfQ8euUsdjR1Ppwsb9mgBOSij3vw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDtzC2rJAyYthQ5BqkaE1Bwxnty+mgE8tjV0iASG6U39QIgGLoMLGQsAxxqNF1yka0GDQZf8qBXT1twlDZRhRf3cfE="}]},"directories":{}},"0.5.0":{"name":"connect-livereload","description":"connect middleware for adding the livereload script to the response","version":"0.5.0","author":{"name":"Andi Neck","email":"andi.neck@intesso.com"},"contributors":[{"name":"Andi Neck","email":"andi.neck@intesso.com"}],"scripts":{"test":"mocha --reporter spec"},"dependencies":{},"devDependencies":{"express":"~3.2.2","supertest":"~0.6.0","mocha":"~1.9.0"},"keywords":["connect","livereload","live-reload"],"repository":{"type":"git","url":"git://github.com/intesso/connect-livereload"},"main":"index","engines":{"node":"*"},"gitHead":"4986babad7a37f4d3dbac233474646146468955b","bugs":{"url":"https://github.com/intesso/connect-livereload/issues"},"homepage":"https://github.com/intesso/connect-livereload","_id":"connect-livereload@0.5.0","_shasum":"8d148021b131bebdefb14af4ea817b76d5422502","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"anonymous","email":"andi.neck@intesso.com"},"maintainers":[{"name":"anonymous","email":"andi.neck@intesso.com"}],"dist":{"shasum":"8d148021b131bebdefb14af4ea817b76d5422502","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/connect-livereload/-/connect-livereload-0.5.0.tgz","integrity":"sha512-vlI7IRAoa++4Ga2HQEskZrEw9orC7/W2iztyv7jF/2Nq54z9zgI7/EX/A7XVhZhYhgNzAKPLxAIuPMLEyYimSw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDJW7Vv3jEVR9XgQJKI6X2NG+156Yik2bxu5iqIymEbCgIhAJLrodrQK0JQmT3jVyXa/bXwU8sdE0N5sf09crNl23Vd"}]},"directories":{}},"0.5.1":{"name":"connect-livereload","description":"connect middleware for adding the livereload script to the response","version":"0.5.1","author":{"name":"Andi Neck","email":"andi.neck@intesso.com"},"contributors":[{"name":"Andi Neck","email":"andi.neck@intesso.com"}],"scripts":{"test":"mocha --reporter spec"},"dependencies":{},"devDependencies":{"express":"~3.2.2","supertest":"~0.6.0","mocha":"~1.9.0"},"keywords":["connect","livereload","live-reload"],"repository":{"type":"git","url":"git://github.com/intesso/connect-livereload"},"main":"index","engines":{"node":"*"},"gitHead":"b79dedd00d4721d5c4de2000ee349fe1db1d78e3","bugs":{"url":"https://github.com/intesso/connect-livereload/issues"},"homepage":"https://github.com/intesso/connect-livereload","_id":"connect-livereload@0.5.1","_shasum":"2b5169b0c1a4e7449d71223baa371742fd4f58dc","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"anonymous","email":"andi.neck@intesso.com"},"maintainers":[{"name":"anonymous","email":"andi.neck@intesso.com"}],"dist":{"shasum":"2b5169b0c1a4e7449d71223baa371742fd4f58dc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/connect-livereload/-/connect-livereload-0.5.1.tgz","integrity":"sha512-pL9WmD95G0wytquEvTiv1NiXhKmXafS8M4xoSqmxuNsQ1ANrSEAsrNyKWKZm6fcOzW3J5nL/WZ8+UkpzFh+l/w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDTdKfobTB6vH+m6cY7QkkncsjYa2QcM/M4Oq8NbsJNxAIgbvcEn3L30hlWQDBnkiqWq+wVfUzow5MJBdhwVXux5rE="}]},"directories":{}},"0.5.2":{"name":"connect-livereload","description":"connect middleware for adding the livereload script to the response","version":"0.5.2","author":{"name":"Andi Neck","email":"andi.neck@intesso.com"},"contributors":[{"name":"Andi Neck","email":"andi.neck@intesso.com"}],"scripts":{"test":"mocha --reporter spec"},"dependencies":{},"devDependencies":{"express":"~3.2.2","supertest":"~0.15.0","mocha":"~1.9.0"},"keywords":["connect","livereload","live-reload"],"repository":{"type":"git","url":"git://github.com/intesso/connect-livereload"},"main":"index","engines":{"node":"*"},"gitHead":"c0f6c7475c8cbefe32fd4f39b26c7f52f179315e","bugs":{"url":"https://github.com/intesso/connect-livereload/issues"},"homepage":"https://github.com/intesso/connect-livereload","_id":"connect-livereload@0.5.2","_shasum":"476878c372dd84ef99081f3fd36aa36a7aaef2aa","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"anonymous","email":"andi.neck@intesso.com"},"maintainers":[{"name":"anonymous","email":"andi.neck@intesso.com"}],"dist":{"shasum":"476878c372dd84ef99081f3fd36aa36a7aaef2aa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/connect-livereload/-/connect-livereload-0.5.2.tgz","integrity":"sha512-AqOWcgzgQO907pobpm2G43wlOMx3vU7f5pEeJ25fI0Kt000jWhpEKvzAGeqc6FaAu6v/IJEfZfa5PntsFaW6XQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEIikbo28MZHyCy2IFh8oQCWcI/px/mM3+x2Xa8uTPvJAiAmhbAq/4iwqnuahg3SJL5+zyy1lpddYHcOYD4iaFBdQw=="}]},"directories":{}},"0.5.3":{"name":"connect-livereload","description":"connect middleware for adding the livereload script to the response","version":"0.5.3","author":{"name":"Andi Neck","email":"andi.neck@intesso.com"},"contributors":[{"name":"Andi Neck","email":"andi.neck@intesso.com"}],"scripts":{"test":"mocha --reporter spec"},"dependencies":{},"devDependencies":{"connect":"^3.3.4","express":"~4.11.2","mocha":"~2.1.0","serve-static":"^1.8.1","supertest":"~0.15.0"},"keywords":["connect","livereload","live-reload"],"repository":{"type":"git","url":"git://github.com/intesso/connect-livereload"},"main":"index","engines":{"node":"*"},"gitHead":"09889e2b35b2398dcc20b39e26e0c49b59575b95","bugs":{"url":"https://github.com/intesso/connect-livereload/issues"},"homepage":"https://github.com/intesso/connect-livereload","_id":"connect-livereload@0.5.3","_shasum":"cd2040a959b1d9caf94fec6c05a775b813b43f6e","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"anonymous","email":"andi.neck@intesso.com"},"maintainers":[{"name":"anonymous","email":"andi.neck@intesso.com"}],"dist":{"shasum":"cd2040a959b1d9caf94fec6c05a775b813b43f6e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/connect-livereload/-/connect-livereload-0.5.3.tgz","integrity":"sha512-kuwJf6i1XUzVBYllXkDfFhYvkpbyjmp4K6UzPMSkGE3yltvAHuwo0YGDaieUXZtZeGDRzx0/UqGQFj3yyedzcw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBjZlHJJ0AqTAh/05qSegXVQJmbtyYc/GrX+/NN1cZ30AiEA+Q4ulKazk6QinVI/6LMyn4jLdCHE6s87O6aWv0dM1Dk="}]},"directories":{}},"0.5.4":{"name":"connect-livereload","description":"connect middleware for adding the livereload script to the response","version":"0.5.4","author":{"name":"Andi Neck","email":"andi.neck@intesso.com"},"contributors":[{"name":"Andi Neck","email":"andi.neck@intesso.com"}],"scripts":{"test":"mocha --reporter spec"},"dependencies":{},"devDependencies":{"connect":"^3.3.4","express":"~4.11.2","mocha":"~2.1.0","serve-static":"^1.8.1","supertest":"~0.15.0"},"keywords":["connect","livereload","live-reload"],"repository":{"type":"git","url":"git://github.com/intesso/connect-livereload.git"},"main":"index","license":"MIT","engines":{"node":"*"},"gitHead":"b5f49da7de780aad868e07870b6372c164b45101","bugs":{"url":"https://github.com/intesso/connect-livereload/issues"},"homepage":"https://github.com/intesso/connect-livereload#readme","_id":"connect-livereload@0.5.4","_shasum":"80157d1371c9f37cc14039ab1895970d119dc3bc","_from":".","_npmVersion":"3.3.8","_nodeVersion":"4.2.1","_npmUser":{"name":"anonymous","email":"andi.neck@intesso.com"},"dist":{"shasum":"80157d1371c9f37cc14039ab1895970d119dc3bc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/connect-livereload/-/connect-livereload-0.5.4.tgz","integrity":"sha512-3KnRwsWf4VmP01I4hCDQqTc4e2UxOvJIi8i08GiwqX2oymzxNFY7PqjFkwHglYTJ0yzUJkO5yqdPxVaIz3Pbug==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICjxKsmjNzWiIkGimZVRzxOB626XQ390flxx0HyDxK+xAiEAx6FP8q5B1VtJKycVRNGC4YCRUiPVZqu7TRC9UAmhIfU="}]},"maintainers":[{"name":"anonymous","email":"andi.neck@intesso.com"}],"directories":{}},"0.6.0":{"name":"connect-livereload","description":"connect middleware for adding the livereload script to the response","version":"0.6.0","author":{"name":"Andi Neck","email":"andi.neck@intesso.com"},"contributors":[{"name":"Andi Neck","email":"andi.neck@intesso.com"}],"scripts":{"test":"mocha --reporter spec"},"dependencies":{},"devDependencies":{"connect":"^3.3.4","express":"~4.11.2","mocha":"~2.1.0","serve-static":"^1.8.1","supertest":"~0.15.0"},"keywords":["connect","livereload","live-reload"],"repository":{"type":"git","url":"git://github.com/intesso/connect-livereload.git"},"main":"index","license":"MIT","engines":{"node":"*"},"gitHead":"13a8cca3192dc077f01e5681cd393681f9e6b060","bugs":{"url":"https://github.com/intesso/connect-livereload/issues"},"homepage":"https://github.com/intesso/connect-livereload#readme","_id":"connect-livereload@0.6.0","_shasum":"f9f009874ad6837183afb170b4c4e3857a1d7ceb","_from":".","_npmVersion":"2.15.5","_nodeVersion":"4.4.6","_npmUser":{"name":"anonymous","email":"andi.neck@intesso.com"},"dist":{"shasum":"f9f009874ad6837183afb170b4c4e3857a1d7ceb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/connect-livereload/-/connect-livereload-0.6.0.tgz","integrity":"sha512-m1KhKmmZwhvbsyuh4KGeEpxIhaA1e3MChtaISarhWGDz1tXW1Lk2aBP9qXulDLsVoJ8adSf6gS7GnLH5nzmtrQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDE7AnO8C3P1koBu4g4iDSsQn3zKFKvfEVUNxQBbafG0AiEAg6kwh/TUI9pZyctFFTvpWPr92ynyDNpsh2JF11FDTP4="}]},"maintainers":[{"name":"anonymous","email":"andi.neck@intesso.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/connect-livereload-0.6.0.tgz_1473709550172_0.570001567248255"},"directories":{}},"0.6.1":{"name":"connect-livereload","description":"connect middleware for adding the livereload script to the response","version":"0.6.1","author":{"name":"Andi Neck","email":"andi.neck@intesso.com"},"contributors":[{"name":"Andi Neck","email":"andi.neck@intesso.com"}],"scripts":{"test":"mocha --reporter spec"},"dependencies":{},"devDependencies":{"connect":"^3.3.4","express":"~4.11.2","mocha":"~2.1.0","serve-static":"^1.8.1","supertest":"~0.15.0"},"keywords":["connect","livereload","live-reload"],"repository":{"type":"git","url":"git://github.com/intesso/connect-livereload.git"},"main":"index","license":"MIT","engines":{"node":"*"},"gitHead":"7c6ca1f974908df4f8c236c73f365e24e1192a9f","bugs":{"url":"https://github.com/intesso/connect-livereload/issues"},"homepage":"https://github.com/intesso/connect-livereload#readme","_id":"connect-livereload@0.6.1","_npmVersion":"6.4.1","_nodeVersion":"10.14.0","_npmUser":{"name":"anonymous","email":"andi.neck@intesso.com"},"dist":{"integrity":"sha512-3R0kMOdL7CjJpU66fzAkCe6HNtd3AavCS4m+uW4KtJjrdGPT0SQEZieAYd+cm+lJoBznNQ4lqipYWkhBMgk00g==","shasum":"1ac0c8bb9d9cfd5b28b629987a56a9239db9baaa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/connect-livereload/-/connect-livereload-0.6.1.tgz","fileCount":7,"unpackedSize":12976,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcG5xjCRA9TVsSAnZWagAAUygP/Ap1+6xWQwM7pAnMPilx\nYdPxIVFiJazpzqTLXghwB2ICop23zzLdLjqE6luXca6KCosnbkwU6E9wu8jD\nn78+fAfSuLYzKayOt7bGwkWjtitiR4jsP5/luPx1iA6r3CDew9Nv6UPP/Xo/\nS/9CowDL94uyqZaX+SzIuoLzOsXB1HF5H/WkDKholfUgKQqYyAFVzzRmBsDJ\neVy+9AVXw/rjSHV/Ln5P4mz00WH7I7P68gspAGCbq39rbLYN6u4fI6/l9DBC\nxvNr+tEcJ0RI/XNLwpPn6B+t71vlFEiy08sxxzF05BqoBH3xQco5EGn33iSg\nq1VYKIDCAGlThcUvhEa/WqjC16DcknlcEDmdo4ob1w/aqhqRroRpT95A74bv\nIr+VlecD+VRxiD5EdOslpnhiHqrIuGqkiSVVEvkTD4Xe3dj+qA7Y+eQDKCQw\nyh/RgoFEoZ6YD13LjjwQDr15zqM4UB3pMQhEafrlQF3PnAjD0o38Jz7wa1js\nUj+xLyJkqnusBUTOM6OZZDsQR+EfKATiEV99s9RQCsjFgVxHSZCirfcTHFN6\nzEGNIgXnx9EsMeLoRc2Q82uecYGiJPiUrzpg3YHueisFn4sTpnJgGhMd4ntI\niQak3a2k1GVZgoltW1LPjkWQzDRdnBbkt/wzucH46iUuH0VTocNxwcFEXy0S\ndpaw\r\n=xufK\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDtbmW/RNxHHmTKEVSf6rbqyqJUeMCURUwO/PQH/bVueQIgZeZk5ZY0vl137t5zUQBxNlWydCeWyRntQO1BKOY3d8E="}]},"maintainers":[{"name":"anonymous","email":"andi.neck@intesso.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/connect-livereload_0.6.1_1545313378731_0.9729435783073668"},"_hasShrinkwrap":false}},"name":"connect-livereload","time":{"modified":"2022-12-02T08:58:31.670Z","created":"2013-04-16T07:33:42.453Z","0.0.2":"2013-04-16T07:33:44.589Z","0.0.3":"2013-04-19T08:47:35.171Z","0.1.0":"2013-04-23T09:27:33.380Z","0.1.1":"2013-05-01T09:33:06.882Z","0.1.2":"2013-05-04T18:21:45.604Z","0.1.3":"2013-05-05T20:16:43.201Z","0.1.4":"2013-05-18T18:42:15.324Z","0.2.0":"2013-06-04T13:01:26.578Z","0.3.0":"2013-09-12T15:50:40.112Z","0.3.1":"2013-12-11T08:18:38.587Z","0.3.2":"2014-01-04T16:06:19.053Z","0.4.0":"2014-04-11T15:49:47.026Z","0.4.1":"2014-10-16T14:27:31.987Z","0.5.0":"2014-10-16T14:37:41.472Z","0.5.1":"2014-11-24T17:13:35.573Z","0.5.2":"2014-11-25T20:14:45.551Z","0.5.3":"2015-02-13T07:50:26.480Z","0.5.4":"2015-11-24T21:01:41.874Z","0.6.0":"2016-09-12T19:45:52.034Z","0.6.1":"2018-12-20T13:42:58.845Z"},"contributors":[{"name":"Andi Neck","email":"andi.neck@intesso.com"}],"readmeFilename":"README.md","homepage":"https://github.com/intesso/connect-livereload#readme"}