Installations
npm install serve-placeholder
Score
99.1
Supply Chain
99.5
Quality
78.8
Maintenance
100
Vulnerability
100
License
Contributors
Developer
unjs
Developer Guide
Module System
ESM
Min. Node Version
Typescript Support
Yes
Node Version
20.14.0
NPM Version
10.7.0
Statistics
155 Stars
92 Commits
5 Forks
4 Watching
7 Branches
16 Contributors
Updated on 13 Nov 2024
Bundle Size
2.69 kB
Minified
1.26 kB
Minified + Gzipped
Languages
TypeScript (56.46%)
JavaScript (43.54%)
Total Downloads
Cumulative downloads
Total Downloads
111,802,525
Last day
-6.1%
126,236
Compared to previous day
Last week
-0.9%
717,071
Compared to previous week
Last month
2.2%
3,099,071
Compared to previous month
Last year
24.2%
32,127,770
Compared to previous year
Daily Downloads
Weekly Downloads
Monthly Downloads
Yearly Downloads
♡ serve-placeholder
Smart placeholder for missing assets
Why?
💵 Rendering Errors is costly
Serving each 404 page for assets adds extra load to the server and increases crashing chances. This is crucial for setups with server-side-rendering and removes additional SSR loads when assets like robots.txt
or favicon.ico
don't exist.
👌 Meaningful Responses
We can always send a better 404 response than an HTML page by knowing file extensions. For example, we send a fallback transparent 1x1 image for image extensions.
🔍 SEO Friendly
Instead of indexing invalid URLs with HTML pages, we properly send 404 and the right content type.
Usage
Install package:
1# ✨ Auto-detect 2npx nypm install serve-placeholder 3 4# npm 5npm install serve-placeholder 6 7# yarn 8yarn add serve-placeholder 9 10# pnpm 11pnpm install serve-placeholder 12 13# bun 14bun install serve-placeholder
Import:
1// ESM 2import { servePlaceholder } from "serve-placeholder"; 3 4// CommonJS 5const { servePlaceholder } = require("serve-placeholder");
Create and add server middleware between serve-static and router middleware:
1app.use('/assets', serveStatic(..)) 2++ app.use('/assets', servePlaceholder()) 3app.use('/', router)
Additionally, we can have a default placeholder for arbitrary routes which handles known extensions assuming other routes have no extension:
1app.use('/assets', serveStatic(..)) 2app.use('/assets', servePlaceholder()) 3++ app.use('/', placeholder({ skipUnknown: true })) 4app.use('/', router)
Options
handlers
A mapping from file extensions to the handler. Extensions should start with dot like .js
.
You can disable any of the handlers by setting the value to null
If the value of a handler is set to false
, the middleware will be ignored for that extension.
statusCode
- Default:
404
Sets statusCode
for all handled responses. Set to false
to disable overriding statusCode.
skipUnknown
- Default:
false
Skip middleware when no handler is defined for the current request.
Please note that if this option is set to true
, then default
handler will be disabled!
placeholders
- Type:
Object
A mapping from handler to placeholder. Values can be String
or Buffer
. You can disable any of the placeholders by setting the value to false
.
mimes
- Type:
Object
A mapping from handler to the mime type. Mime type will be set as Content-Type
header. You can disable sending any of the mimes by setting the value to false
.
cacheHeaders
- Default:
true
Set headers to prevent accidentally caching 404 resources.
When enabled, these headers will be sent:
1const headers = { 2 "cache-control": "no-cache, no-store, must-revalidate", 3 expires: "0", 4 pragma: "no-cache", 5};
placeholderHeader
- Default:
true
Sets an X-Placeholder
header with value of handler name.
Defaults
These are default handlers. You can override every of them using provided options.
Handler | Extensions | Mime type | Placeholder |
---|---|---|---|
default | any unknown extension | - | - |
css | .css | text/css | /* style not found */ |
html | .html , .htm | text/html | <!-- page not found --> |
js | .js | application/javascript | /* script not found */ |
json | .json | application/json | {} |
map | .map | application/json | [empty sourcemap v3 json] |
plain | .txt , .text , .md | text/plain | [empty] |
image | .png , .jpg , .jpeg , .gif , .svg , .webp , .bmp , .ico | image/gif | [transparent 1x1 image] |
Development
local development
License
Published under the MIT license.
Made by @pi0 and community 💛
🤖 auto updated with automd
No vulnerabilities found.
No security vulnerabilities found.