Skip to main content

overview

Psychic follows a paradigm set up by many other MVC frameworks, which is to have a centralized file from which all of your application's routes can be derived. Though some frameworks have done away with such mechanisms, favoring implicit routing built into the application's controllers, Psychic prefers the centralized routing system, since it gives the engineer a high-level overview of their application, and enables them to easily switch routes on and off.

The route bindings for a Psychic application can be found in the conf/routes.ts file. Routes are expressed elegantly using standard HTTP-verb driven language, like so:

import { PsychicRouter } from 'psychic'

export default (r: PsychicRouter) => {
r.get('/health-check')
}

GET     /health-check  HealthCheck#ping

CRUD routing mechanisms

CRUD (Create, Read, Update, Delete) verbs are the backbone of expressive routing in a web paradigm, since all web requests sent must choose an HTTP verb matching one of these verbs when sending a request. This is fundamental to the HTTP spec, which governs all requests into your web server.

In the HTTP world, these verbs are translated into the following:

  • POST - Create
  • GET - Read
  • PUT - Update
  • PATCH - Update
  • DELETE - Delete

Here is an example, demonstrating how these verbs might be used to clearly express a resourcefully-driven application, i.e. for a blog

import { PsychicRouter } from 'psychic'

export default (r: PsychicRouter) => {
r.post('posts', PostsController, 'create')
r.get('posts', PostsController, 'index')
r.get('posts/:id', PostsController, 'show')
r.patch('posts/:id', PostsController, 'update')
r.put('posts/:id', PostsController, 'update')
r.delete('posts/:id', PostsController, 'destroy')
}

POST     /posts      Posts#create
GET      /posts      Posts#index
GET      /posts/:id  Posts#show
PATCH    /posts/:id  Posts#update
PUT      /posts/:id  Posts#update
DELETE   /posts/:id  Posts#destroy

To learn more about CRUD-driven routing mechanisms, see our crud guide.

Resourceful routing

Since this type of routing pattern is quite common, Psychic provides encapsulated methods which will automatically build out these exact route directives in a single call, using the resources method, like so:

import { PsychicRouter } from 'psychic'

export default (r: PsychicRouter) => {
r.resources('posts')
}

POST     /posts      Posts#create
GET      /posts      Posts#index
GET      /posts/:id  Posts#show
PATCH    /posts/:id  Posts#update
PUT      /posts/:id  Posts#update
DELETE   /posts/:id  Posts#destroy

To learn more about resourceful routing, see our resourceful routing guide.

Namespacing

The Psychic router also provides techniques for namespacing your application, using nested callbacks to organize clusters of routes together, like so:

import { PsychicRouter } from 'psychic'

export default (r: PsychicRouter) => {
r.namespace('api', (r) => {
r.namespace('v1', (r) => {
r.resources('posts')
})
})
}

POST     /api/v1/posts      Posts#create
GET      /api/v1/posts      Posts#index
GET      /api/v1/posts/:id  Posts#show
PATCH    /api/v1/posts/:id  Posts#update
PUT      /api/v1/posts/:id  Posts#update
DELETE   /api/v1/posts/:id  Posts#destroy

To learn more about techniques for namespacing, see our namespacing guide.

tip