Coder Social home page Coder Social logo

Route handling about kakapo.js HOT 5 CLOSED

zzarcon avatar zzarcon commented on May 21, 2024
Route handling

from kakapo.js.

Comments (5)

rpunkfu avatar rpunkfu commented on May 21, 2024 1

I think we should support queries! :) Also we probably should pass object as a second argument to filter db.find

import { router } from 'kakapo';

router.get('/users?size=42&page=7', usersHandler);
router.get('/users/:id', usersHandler);

const usersHandler = (request, database) => ({
    users: database.find('user', request.params, request.query.size);
});

from kakapo.js.

rpunkfu avatar rpunkfu commented on May 21, 2024

As I think of that, we shouldn't have router & database being so tightly coupled... imo router shouldn't know anything about database:

import { Database, Router } from 'kakapo';

const database = new Database(/* bla bla bla */);
const router = new Router(/* bla bla bla */);

database.register('user', /* bla bla bla */);

router.get('/users?size=42&page=7', usersHandler);
router.get('/users/:id', usersHandler);

const usersHandler = request => ({
    users: database.find('user', {id: request.params.id}, {size: request.query.size});
});

from kakapo.js.

zzarcon avatar zzarcon commented on May 21, 2024

request.params already implemented 💪 and I like the request.query i was not sure about which name to use for that one ^^

from kakapo.js.

zzarcon avatar zzarcon commented on May 21, 2024

@oskarcieslik should we close this issue and create a new one with the point of decoupling the router and the db?

from kakapo.js.

rpunkfu avatar rpunkfu commented on May 21, 2024

Yes, I will close this after tests for query implementation pass :)

from kakapo.js.

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.