├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.md ├── communities.md ├── events ├── events.md ├── meetups.md └── nodeschool-oakland.md └── talks ├── abstracts.md ├── talks.md └── videos ├── 2013-05-16 - Introducing nodesecurity.io - Adam Baldwin @ NodePDX.mp4 ├── 2013-10-02 - Node Security Project - Adam Baldwin @ LXJS.mp4 ├── 2014-12-11 - Bizarrolout, Automated Fuzzing for Hapi - Jon Lamendola @ hapiDay Oakland.mp4 ├── 2015-02-26 - requireSafe - Adam Baldwin @ OPO.js.mp4 ├── 2015-07-10 - The Art of Identifying Vulnerabilities - Adam Baldwin @ CascadiaFest.mp4 ├── 2015-11-14 - Node.js security experiments, A trip back in time - Adam Baldwin @ Nodevember.mp4 ├── 2016-05-27 - Continuous Security - Adam Baldwin @ Empire.js.mp4 ├── 2017-10-28 - npm 5 Bringing package management to the future - Kat Marchán @ NodeConf Argentina.mp4 └── 2018-04-12 - The journey of a package from the npm registry to your computer - Jeffrey Lembeck @ JSHeroes.mp4 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/devrel/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/devrel/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/devrel/HEAD/README.md -------------------------------------------------------------------------------- /communities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/devrel/HEAD/communities.md -------------------------------------------------------------------------------- /events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/devrel/HEAD/events/events.md -------------------------------------------------------------------------------- /events/meetups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/devrel/HEAD/events/meetups.md -------------------------------------------------------------------------------- /events/nodeschool-oakland.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/devrel/HEAD/events/nodeschool-oakland.md -------------------------------------------------------------------------------- /talks/abstracts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/devrel/HEAD/talks/abstracts.md -------------------------------------------------------------------------------- /talks/talks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/devrel/HEAD/talks/talks.md -------------------------------------------------------------------------------- /talks/videos/2013-05-16 - Introducing nodesecurity.io - Adam Baldwin @ NodePDX.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/devrel/HEAD/talks/videos/2013-05-16 - Introducing nodesecurity.io - Adam Baldwin @ NodePDX.mp4 -------------------------------------------------------------------------------- /talks/videos/2013-10-02 - Node Security Project - Adam Baldwin @ LXJS.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/devrel/HEAD/talks/videos/2013-10-02 - Node Security Project - Adam Baldwin @ LXJS.mp4 -------------------------------------------------------------------------------- /talks/videos/2014-12-11 - Bizarrolout, Automated Fuzzing for Hapi - Jon Lamendola @ hapiDay Oakland.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/devrel/HEAD/talks/videos/2014-12-11 - Bizarrolout, Automated Fuzzing for Hapi - Jon Lamendola @ hapiDay Oakland.mp4 -------------------------------------------------------------------------------- /talks/videos/2015-02-26 - requireSafe - Adam Baldwin @ OPO.js.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/devrel/HEAD/talks/videos/2015-02-26 - requireSafe - Adam Baldwin @ OPO.js.mp4 -------------------------------------------------------------------------------- /talks/videos/2015-07-10 - The Art of Identifying Vulnerabilities - Adam Baldwin @ CascadiaFest.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/devrel/HEAD/talks/videos/2015-07-10 - The Art of Identifying Vulnerabilities - Adam Baldwin @ CascadiaFest.mp4 -------------------------------------------------------------------------------- /talks/videos/2015-11-14 - Node.js security experiments, A trip back in time - Adam Baldwin @ Nodevember.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/devrel/HEAD/talks/videos/2015-11-14 - Node.js security experiments, A trip back in time - Adam Baldwin @ Nodevember.mp4 -------------------------------------------------------------------------------- /talks/videos/2016-05-27 - Continuous Security - Adam Baldwin @ Empire.js.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/devrel/HEAD/talks/videos/2016-05-27 - Continuous Security - Adam Baldwin @ Empire.js.mp4 -------------------------------------------------------------------------------- /talks/videos/2017-10-28 - npm 5 Bringing package management to the future - Kat Marchán @ NodeConf Argentina.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/devrel/HEAD/talks/videos/2017-10-28 - npm 5 Bringing package management to the future - Kat Marchán @ NodeConf Argentina.mp4 -------------------------------------------------------------------------------- /talks/videos/2018-04-12 - The journey of a package from the npm registry to your computer - Jeffrey Lembeck @ JSHeroes.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/devrel/HEAD/talks/videos/2018-04-12 - The journey of a package from the npm registry to your computer - Jeffrey Lembeck @ JSHeroes.mp4 --------------------------------------------------------------------------------