Coder Social home page Coder Social logo

Comments (8)

sadiquekp avatar sadiquekp commented on April 28, 2024

correct, how can I set middleware for specific routes only ?

from examples.

mmmeff avatar mmmeff commented on April 28, 2024

Yeah, having a hard time figuring out how these are supposed to be used as well.

Can't reason about how to add a header to a page response. The example has a completely empty response being returned. Instead, I want to add a header to every page's response...

from examples.

leerob avatar leerob commented on April 28, 2024

Are you saying you want plain JavaScript and not TypeScript?

Can't reason about how to add a header to a page response.

Did you see this? You can return right here with the null to just add headers to the response: https://github.com/vercel/examples/blob/main/edge-functions/add-header/pages/_middleware.ts#L13

from examples.

nyg avatar nyg commented on April 28, 2024

@mmmeff You can do it like this:

import { NextResponse } from "next/server"

export default function myMiddleware(req) {
  const res = NextResponse.next()
  res.headers.append('x-custom-1', 'ok')
  return res
}

.next() adds a custom header to the response which will ensure it is not returned immediately to the client (but pages/api will be executed).

from examples.

ali-alhussain avatar ali-alhussain commented on April 28, 2024

@leerob For me, yes I want to know if I can use Javascript instead of Typescript?

And is there any examples for it?

from examples.

leerob avatar leerob commented on April 28, 2024

Yes, you can use JavaScript instead of TypeScript. TS is a superset of JS, so you can just remove the typings and TS specific code on any example.

from examples.

leerob avatar leerob commented on April 28, 2024

We will be continuing to make examples in TypeScript, since you can remove the typings to get JavaScript, versus the inverse where you might not understand how to correctly type the code.

from examples.

ali-alhussain avatar ali-alhussain commented on April 28, 2024

@leerob thanks for your quick reply!

from examples.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.