npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@jcbuisson/express-x

v2.1.17

Published

## Create a project

Downloads

106

Readme

Getting started

Create a project

Let's create a new folder for our application:

mkdir expressx-project
cd expressx-project

Since any ExpressX application is a Node application, we can create a default package.json using npm:

npm init es6 --yes

The es6 argument adds "type": "module" in package.json. Beware! All further module imports must made with es6/esm import syntax.

Install ExpressX

npm install @jcbuisson/express-x

Our first server application

Now we can create an ExpressX application which will provide a complete REST API on a user resource backed in a Prisma database

// app.js
import { expressXServer } from '@jcbuisson/express-x'

// `app` is a regular express application, enhanced with service and real-time features
const app = expressX()

// configure prisma client from schema
const prisma = new PrismaClient()

// create two CRUD database services. They provide Prisma methods: `create`, 'createMany', 'find', 'findMany', 'upsert', etc.
app.createService('User', prisma.User)
app.createService('Post', prisma.Post)

app.server.listen(8000, () => console.log(`App listening at http://localhost:8000`))

Before running it we need to setup the corresponding database.

Create the database

Presently, ExpressX only handles Prisma. Prisma is able to connect to most brands of relational or NoSQL databases.

First, provide the database schema in prisma/schema.prisma:

generator client {
   provider = "prisma-client-js"
}

model User {
   id          Int       @default(autoincrement()) @id
   name        String
   posts       Post[]
}

model Post {
   id          Int       @default(autoincrement()) @id
   text        String
   author      User      @relation(fields: [authorId], references: [id], onDelete: Cascade)
   authorId    Int
}

datasource db {
   provider = "sqlite"
   url      = "file:./dev.db"
}

Then create the database:

npx prisma db push

The sqlite database file is created at prisma/dev.db

Run the application on the server side

node app.js

Use it with a websocket client

Create the following client NodeJS script:

// client.js
import io from 'socket.io-client'
import { expressXClient } from '@jcbuisson/express-x'

const socket = io('http://localhost:8000', { transports: ["websocket"] })

const app = expressXClient(socket)

async function main() {
   const user = await app.service('User').create({
      name: "Joe",
   })
   await app.service('Post').create({
      authorId: user.id,
      text: "Post#1"
   })
   await app.service('Post').create({
      authorId: user.id,
      text: "Post#2"
   })
   const joe = await app.service('User').findUnique({
      where: {
         id: user.id,
      },
      include: {
         posts: true,
      },
   })
   console.log('joe', joe)
   process.exit(0)
}
main()

For simplicity we use a node client, but you would write something similar with your favorite front-end framework.

You can use the exact same statements on services on the client side as you would on the server side, such as: app.service('User').create(...). Of course the app object here on the client is quite different that the app object on the server; you can find explanations here.

Now run the client script:

node client.js

It prints the following lines in the console:

joe {
  id: 11,
  name: 'Joe',
  posts: [
    { id: 12, text: 'Post#1', authorId: 11 },
    { id: 13, text: 'Post#2', authorId: 11 }
  ]
}

We have a GraphQL-like experience with the nested posts, thanks to Prisma and its use through ExpressX services.

::: info We could have removed from app.js all lines related to HTTP, since we are only using the websocket transport. :::

Real-time applications

When websocket transport is used (default situation) and when a connected client calls a service method, two twings happen on method completion:

  • the resulting value is sent to the client
  • an event is emitted, and sent to connected clients we'll call subscribers. The calling client may or not be one of those subscribers.

For example in a medical application, whenever a patients's record is modified, an event could be sent to all his/her caregivers.

Channels are used for this pub/sub mechanism. Service methods publish events on channels, and clients subscribe to channels in order to receive those events. ExpressX provides functions to configure which events are published to which channels. A channel is represented by a name and you can create and use as many channels as you need.

In the following example, every time a client connects to the server, it joins (= is subscribed to) the 'anonymous' channel. And whenever an event is emited by the post or user service, this event is published on this channel, and then broacasted to all connected clients, leading to real-time updates.

// app.js
import { expressXServer } from '@jcbuisson/express-x'
import { PrismaClient } from '@prisma/client'

// `app` is a regular express application, enhanced with service and real-time features
const app = expressX()

// configure prisma client from schema
const prisma = new PrismaClient()

// create two CRUD database services. They provide Prisma methods: `create`, 'createMany', 'find', 'findMany', 'upsert', etc.
app.createService('User', prisma.User)
app.createService('Post', prisma.Post)

// publish
app.service('User').publish(async (post, context) => {
   return ['anonymous']
})
app.service('Post').publish(async (post, context) => {
   return ['anonymous']
})

// subscribe
app.on('connection', (socket) => {
   console.log('connection', socket.id)
   app.joinChannel('anonymous', socket)
})

app.server.listen(8000, () => console.log(`App listening at http://localhost:8000`))

Here is how a client may listen to channel events:

...
app.service('Post').on('create', post => {
   console.log('post event created', post)
})

The listener is triggered whenever the client receives from the server a create event from the service post. This event results from the completion on the server of a call app.service('Post').create()