Add a Security section & snyk

Added security section: The importance of having developers embrace security is growing, and I believe every (awesome) list of this nature should have a security section enumerating security tools.

Added snyk: I kicked off the section with snyk, which holds your hand through finding vulnerable npm dependencies and fixing them through guided upgrades or patches, as well as adding that to your build so you don't accidentally add vulnerable dependencies later on.

It's worth noting that while Snyk is a company, the client & vulnerability DB is open source (https://github.com/Snyk/vulndb), and the testing & patching functionality is forever free.

Full disclosure: I'm a part of the Snyk team, on a mission to help make open source more secure! ;)

Closes #491
This commit is contained in:
Guy Podjarny
2016-04-22 01:09:22 +07:00
committed by Sindre Sorhus
parent 238313fbb1
commit 3985ba4565

View File

@@ -41,6 +41,7 @@
- [Network](#network) - [Network](#network)
- [Database](#database) - [Database](#database)
- [Testing](#testing) - [Testing](#testing)
- [Security](#security)
- [Benchmarking](#benchmarking) - [Benchmarking](#benchmarking)
- [Minifiers](#minifiers) - [Minifiers](#minifiers)
- [Authentication](#authentication) - [Authentication](#authentication)
@@ -571,6 +572,11 @@
- [testen](https://github.com/egoist/testen) - Run tests for multiple versions of Node.js locally with NVM. - [testen](https://github.com/egoist/testen) - Run tests for multiple versions of Node.js locally with NVM.
### Security
- [snyk](https://github.com/Snyk/snyk) - CLI and build-time tool to find & fix vulnerable npm dependencies.
### Benchmarking ### Benchmarking
- [Benchmark.js](http://benchmarkjs.com) - A robust benchmarking library that works on nearly all JavaScript platforms, supports high-resolution timers, and returns statistically significant results. - [Benchmark.js](http://benchmarkjs.com) - A robust benchmarking library that works on nearly all JavaScript platforms, supports high-resolution timers, and returns statistically significant results.