Socket
Socket
Sign inDemoInstall

fastify

Package Overview
Dependencies
Maintainers
2
Versions
288
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fastify - npm Package Compare versions

Comparing version 0.20.0 to 0.20.1

lib/bin.js

29

package.json
{
"name": "fastify",
"version": "0.20.0",
"version": "0.20.1",
"description": "Fast and low overhead web framework, for Node.js",
"main": "fastify.js",
"bin": {
"fastify": "./node_modules/.bin/fastify"
"fastify": "./lib/bin.js"
},

@@ -38,14 +38,17 @@ "scripts": {

"homepage": "https://github.com/fastify/fastify#readme",
"engines": {
"node": ">=4.5"
},
"devDependencies": {
"bluebird": "^3.5.0",
"boom": "^4.3.1",
"boom": "^5.0.0",
"cors": "^2.8.3",
"coveralls": "^2.13.1",
"dns-prefetch-control": "^0.1.0",
"express": "^4.15.2",
"express": "^4.15.3",
"fast-json-body": "^1.1.0",
"fastify-plugin": "^0.1.0",
"frameguard": "^3.0.0",
"hapi": "^16.1.1",
"helmet": "^3.6.0",
"hapi": "^16.3.0",
"helmet": "^3.6.1",
"hide-powered-by": "^1.0.0",

@@ -55,3 +58,3 @@ "hsts": "^2.0.0",

"koa": "^2.2.0",
"pino": "^4.5.1",
"pino": "^4.5.3",
"pre-commit": "^1.2.2",

@@ -68,15 +71,15 @@ "request": "^2.81.0",

"dependencies": {
"ajv": "^5.0.1",
"ajv": "^5.1.5",
"avvio": "^0.6.1",
"fast-json-stringify": "^0.11.0",
"fast-safe-stringify": "^1.1.13",
"fastify-cli": "^0.6.0",
"fast-json-stringify": "^0.12.1",
"fast-safe-stringify": "^1.2.0",
"fastify-cli": "^0.6.1",
"fastseries": "^1.7.2",
"find-my-way": "^0.2.2",
"find-my-way": "^0.2.4",
"middie": "^0.3.0",
"pino-http": "^2.6.1",
"pump": "^1.0.2",
"shot": "^3.4.0",
"shot": "^3.4.2",
"xtend": "^4.0.1"
}
}

@@ -18,3 +18,3 @@ <div align="center">

Enter Fastify. Fastify is a web framework highly focused on speed and low overhead. It is inspired from Hapi and Express and as far as we know, it is one of the fastest web frameworks in town.
Enter Fastify. Fastify is a web framework highly focused on speed and low overhead. It is inspired from Hapi and Express and as far as we know, it is one of the fastest web frameworks in town.
Use Fastify can increase your throughput up to 100%.

@@ -28,4 +28,4 @@

- **Schema based:** even if it is not mandatory we recommend to use [JSON Schema](http://json-schema.org/) to validate you routes and serialize your outputs, internally Fastify compiles the schema in an highly performant function.
- **Logging:** logs are extremely important but are costly; we choose the best logger to almost remove this cost, [Pino](https://github.com/pinojs/pino)!
- **Developer friendly:** the framework is built to be very expressive and help the developer in his daily use, without sacrificing performances and security.
- **Logging:** logs are extremely important but are costly; we chose the best logger to almost remove this cost, [Pino](https://github.com/pinojs/pino)!
- **Developer friendly:** the framework is built to be very expressive and help the developer in his daily use, without sacrificing performance and security.

@@ -56,14 +56,16 @@ ### Benchmarks

## Ecosystem
- [`point-of-view`](https://github.com/fastify/point-of-view)
- [`point-of-view`](https://github.com/fastify/point-of-view)
Templates rendering (*ejs, pug, handlebars, marko*) plugin support for Fastify.
- [`fastify-mongodb`](https://github.com/fastify/fastify-mongodb)
- [`fastify-mongodb`](https://github.com/fastify/fastify-mongodb)
Fastify MongoDB connection plugin, with this you can share the same MongoDb connection pool in every part of your server.
- [`fastify-redis`](https://github.com/fastify/fastify-redis)
- [`fastify-redis`](https://github.com/fastify/fastify-redis)
Fastify Redis connection plugin, with this you can share the same Redis connection in every part of your server.
- [`fastify-swagger`](https://github.com/fastify/fastify-swagger)
- [`fastify-swagger`](https://github.com/fastify/fastify-swagger)
Swagger documentation generator for Fastify
- [`fastify-multipart`](https://github.com/fastify/fastify-multipart)
- [`fastify-multipart`](https://github.com/fastify/fastify-multipart)
Multipart support for Fastify
- [`fastify-bearer-auth`](https://github.com/jsumners/fastify-bearer-auth)
- [`fastify-bearer-auth`](https://github.com/jsumners/fastify-bearer-auth)
Bearer auth plugin for Fastify
- [`fastify-pigeon`](https://github.com/fastify/fastify-pigeon) Bankai assets compiler for Fastify
- [`fastify-react`](https://github.com/fastify/fastify-react) React server side rendering support for Fastify with Next
- *More coming soon*

@@ -70,0 +72,0 @@

@@ -7,3 +7,3 @@ 'use strict'

if (Number(process.versions.node[0]) >= 7) {
if (Number(process.versions.node[0]) === 7) {
childProcess.fork(path.join(__dirname, 'async-await'), [], {

@@ -10,0 +10,0 @@ execArgv: ['--harmony-async-await']

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc