All Projects → unjs → serve-placeholder

unjs / serve-placeholder

Licence: MIT license
♡ Smart placeholder for missing assets

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to serve-placeholder

create-nuxt-tailwind-app
[DEPRECATED] Use create-nuxt-app, they added full tailwindcss & purgecss support
Stars: ✭ 32 (-71.93%)
Mutual labels:  nuxt
loading-screen
🚥Loading screen for webpack plugin inspired by Nuxt.js's loading screen
Stars: ✭ 56 (-50.88%)
Mutual labels:  nuxt
nuxt-spa-store-init
A simple Nuxt module that will hydrate the VueX store when running in SPA mode (not SSR)
Stars: ✭ 14 (-87.72%)
Mutual labels:  nuxt
geofind
Multiplayer Geographical Guessing Game using PostGIS, Nuxt, Leaflet & Colyseus.
Stars: ✭ 31 (-72.81%)
Mutual labels:  nuxt
LaraNuxt
Laravel framework with integrated NuxtJs support, preconfigured for eslint, jest and vuetify.
Stars: ✭ 53 (-53.51%)
Mutual labels:  nuxt
starter-kit-nuxt-locomotive-scroll
Simple starter kit to use Locomotive Scroll and Nuxt without giving it a second though.
Stars: ✭ 97 (-14.91%)
Mutual labels:  nuxt
vue-plausible
Plausible Analytics Vue.js Plugin and NuxtJS Module
Stars: ✭ 107 (-6.14%)
Mutual labels:  nuxt
muxnect
Send input to just about any interactive command-line tool through a local web server
Stars: ✭ 23 (-79.82%)
Mutual labels:  connect
taller-nuxt
🚀Explicación y código del taller de Nuxt para Wecodefest 2019
Stars: ✭ 20 (-82.46%)
Mutual labels:  nuxt
supplebox
Rails×Nuxt製プロテイン口コミ共有サービス「SuppleBox(サプリボックス)」
Stars: ✭ 22 (-80.7%)
Mutual labels:  nuxt
nuxt-ts-module
A tiny module to use Typescript within Nuxt.js application.
Stars: ✭ 21 (-81.58%)
Mutual labels:  nuxt
board
A complete admin board template with a large variety of elements and components, based on blexar CSS framework.
Stars: ✭ 55 (-51.75%)
Mutual labels:  nuxt
nuxt-netlifycms-boilerplate
A simple boilerplate for using NetlifyCMS with Nuxt
Stars: ✭ 51 (-55.26%)
Mutual labels:  nuxt
bangumi
Bangumi List
Stars: ✭ 20 (-82.46%)
Mutual labels:  nuxt
vuefes-2018
Vue Fes Japan 2018 の Web サイトのソースコードです。ナレッジ共有のために公開します
Stars: ✭ 39 (-65.79%)
Mutual labels:  nuxt
hackaru-desktop
Hackaru for desktop
Stars: ✭ 37 (-67.54%)
Mutual labels:  nuxt
lunr-module
Full-text search with pre-build indexes for Nuxt.js using lunr.js
Stars: ✭ 45 (-60.53%)
Mutual labels:  nuxt
aio-rek
Face recognition based attendance system
Stars: ✭ 19 (-83.33%)
Mutual labels:  nuxt
nuxt-netlify-cms-starter
🏞 A very spartan starter for using Nuxt.js with Netlify CMS.
Stars: ✭ 67 (-41.23%)
Mutual labels:  nuxt
nuxt
Nuxt 3 and Vue 3 client for genealogy project. Family tree and genealogy data processing website software client.
Stars: ✭ 97 (-14.91%)
Mutual labels:  nuxt

♡ serve-placeholder

Smart placeholder for missing assets

npm version npm downloads Github Actions Codecov

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:

# npm
npm install serve-placeholder

# yarn
yarn install serve-placeholder

# pnpm
pnpm install serve-placeholder

Import:

// ESM
import { servePlaceholder } from 'serve-placeholder'

// CommonJS
const { servePlaceholder } = require('serve-placeholder')

Create and add server middleware between serve-static and router middleware:

app.use('/assets', serveStatic(..))
++ app.use('/assets', servePlaceholder())
app.use('/', router)

Additionally, we can have a default placeholder for arbitrary routes which handles known extensions assuming other routes have no extension:

app.use('/assets', serveStatic(..))
app.use('/assets', servePlaceholder())
++ app.use('/', placeholder({ skipUnknown: true }))
app.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:

{
  'cache-control': 'no-cache, no-store, must-revalidate',
  'expires': '0',
  'pragma': 'no-cache'
}

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

  • Clone this repository
  • Enable Corepack using corepack enable (use npm i -g corepack for Node.js < 16.10)
  • Install dependencies using pnpm install
  • Run interactive tests using pnpm dev

License

Made with 💛

Published under MIT License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].