Giter VIP home page Giter VIP logo

Comments (2)

Alex-Levacher avatar Alex-Levacher commented on May 29, 2024

Hey @Livog, a solution I see is to create a project.routig.js at the root of your Lumie files (controllers folder for instance) and make something like:

const project = (req, res) => {
  res.json({ msg: `I am the project ${req.params.project}`});
};

module.exports = {
  '/:project(apple|banana)': {
    get: {
      action: project,
      level: 'public'
    }
  }
};

Don't forget to have a regex in your routing configuration in order to not override other endpoints. I gave you an example that takes banana or apple as existing projects.

If you don't want to create the action in the routing file, you can create a folder projects and define the actions inside, but you'll have to keep the project.routing.js at the root.

A completely different solution would be to create: /api/project/:name. You can follow this example if you choose this solution

from lumie.

Alex-Levacher avatar Alex-Levacher commented on May 29, 2024

@Livog Is my answer was helpful?

from lumie.

Related Issues (15)

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.