Heim > Artikel > Web-Frontend > Teilen Sie ein Nodejs-Webframework: Fastify
Dieser Artikel stellt Ihnen ein Nodejs-Webframework vor: Fastify. Er stellt kurz die von Fastify unterstützten Funktionen und die Verwendung von Fastify vor. Ich hoffe, dass er für alle hilfreich ist.
Die meisten Front-End-Webframeworks basieren auf node. fastify ist keine Ausnahme.
Wenn das wirklich der Fall ist, würden Sie dann gerne fastfy ausprobieren? ? Kbenchmarksenmachine:
EX41S -SSD, Intel Core i7, 4GHz, 64GB RAM, 4C/8T, SSD.
AutoCannon -C 100 -D 40 -P 10 localhost:3000
* 2, nehmen Sie den zweiten DurchschnittFramework | Version | Router? | Anfragen/Sek. | ||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Framework | Version | Router? | Requests/sec |
---|---|---|---|
Express | 4.17.3 | ✓ | 14,200 |
hapi | 20.2.1 | ✓ | 42,284 |
Restify | 8.6.1 | ✓ | 50,363 |
Koa | 2.13.0 | ✗ | 54,272 |
Fastify | 4.0.0 | ✓ | 77,193 |
- | |||
http.Server 14.200 |
|||
20.2.1 |
http.Server
🎜🎜16.14.2🎜🎜✗🎜🎜74.513🎜🎜🎜🎜Ab sofort Es gibt 48 Kern-Plug-Ins und 179 Community-Plug-Ins
Projekt erstellen
npm install --global fastify-cli fastify generate myproject
Projekt initialisieren
npm init -y fastify
Abhängigkeiten installieren
#npm npm i fastify #yarn yarn add fastify
Synchronisierte Rückkehr
// ESM import Fastify from 'fastify' //const fastify = Fastify({ //logger: true //}) // CommonJs const fastify = require('fastify')({ logger: true }) // Declare a route fastify.get('/', (request, reply) => { reply.send({ hello: 'world' }) }) // Run the server! fastify.listen({ port: 3000 }, (err, address) => { if (err) throw err // Server is now listening on ${address} })
Asynchrone Rückkehr
// ESM import Fastify from 'fastify' const fastify = Fastify({ logger: true }) // CommonJs //const fastify = require('fastify')({ //logger: true //}) fastify.get('/', async (request, reply) => { reply.type('application/json').code(200) return { hello: 'world' } }) fastify.listen({ port: 3000 }, (err, address) => { if (err) throw err // Server is now listening on ${address} })
fastify.register(plugin, [Optionen]), für weitere Nutzung können Sie auf den Link zum Herunterladen klicken, zum Link springen und es versuchen~
const fastifySession = require('fastify-session') fastify.register(fastifySession, { cookieName: 'sessionId', secret: 'a secret with minimum length of 32 characters', cookie: { secure: false }, expires: 1800000 })
Getting Started
Guides
Server
Encapsulation
Logging
Middleware
Decorators
Validation and Serialization
Fluent Schema
Reply
Errors
Content Type Parser
Testing
How to write a good plugin
Plugins Guide
HTTP2
Long Term Support
TypeScript and types support
Recommendations
更多node相关知识,请访问:nodejs 教程!
Das obige ist der detaillierte Inhalt vonTeilen Sie ein Nodejs-Webframework: Fastify. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!