Skip to content

304 Not Modified

You already have the latest version of this file in your browser cache. I’m not going to send it again.

Use this for massive performance gains. If the client asks ‘Has this image changed since yesterday?’ and it hasn’t, respond with 304 instead of sending the heavy image again.

import { HttpCode, get } from 'shokupan';
export const getResource = get('/resource', () => {
return { message: 'Not Modified' };
}).pipe(HttpCode(304));