Code Monkey home page Code Monkey logo

dryroutes's Introduction

Dry Routes

Experiment - Sharing routes between front and backend

tl;dr

This is a proof of concept node app that reuses the same definition of routes to define the routes for the Backbone.js Router on the frontend, and the corresponding Express.js routes on the backend (necessary for when using pushState which again is necessary for bootstrapping data.)


Why have the same routes on the frontend and backend?

When serving a single page app, you cannot bootstrap the needed data unless using HTML5 Push State. Basically using push state allows your single page app to use real URLs instead of anchor urls. The main benefit from that is your server can see what you are requesting, since anchors are not sent to the server.

Since they are real URLs though, your server needs to be able to respond to them. That is why you want to define the same routes on your backend as frontend.

======

This defines the routes hash used by Backbone.js, and stores them on the backend. It maps them to Express.js routes and the router methods to lookup methods for boostrapping the correct data. It finally sends them to the front end to be injected into the Backbone router.

At this point, you still aren't saving much because you still need to define a corresponding lookup method for each route, so you may as well just define the routes manually.

This isn't intended as production level code. Just a hack I am playing with.

dryroutes's People

Contributors

jisaacks avatar

Watchers

 avatar  avatar

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.