LATEST TRANSMISSIONS
ENCRYPTED // PUBLIC KEY DETECTED
Unlocking User Data in TypeScript FeathersJS V5 Custom Services
Facing the Feathery Challenge While working with FeathersJS V5 and TypeScript, I have encountered a peculiar challenge: accessing the user object within custom services. While authentication mechanism…
Resolving MaxListenersExceededWarning in a FeathersJS App with Socket.io
Learn how to resolve the MaxListenersExceededWarning in a FeathersJS application using Socket.io.
Koa Router with FeathersJS V5
New Version FeathersJS V5 is out. FeathersJS now uses KoaJS as its default application core instead of ExpressJS, with some slight differences between the two. For example, I can't generate routed mid…
解决 Node 应用接入企业微信登录不显示二维码的问题
我在使用 Ant Design Pro 和 FeathersJS 开发一个支持企业微信二维码登录的应用。这个功能之前很顺利地完成过,而这次总是无法加载出二维码。 经过排查是 FeathersJS 使用的 helmet 库升级了安全策略,默认禁用了站外资源。 要顺利加载企业微信的二维码,需要调整降低安全策略。 app.use(helmet({ contentSecurityPolicy: fal…
Emit and Listen to Socket.IO Events in FeathersJS
FeatherJS uses Socket.IO to build real-time applications. With it, we can push messages from server side to client side. Events for RESTful Service FeathersJS has implemented basic events for RESTful…
Get Real Client IP In FeathersJS
IP Address In Request Headers Are Usually Set by Nginx Your Nginx reverse proxy config should be something like this: server { listen 80; server_name example.com; location / { prox…
在微信小程序中使用FeathersJS的RESTful API
前言 最近在做微信小程序开发,为已有的一个Web应用程序提供微信小程序客户端。这个Web应用程序基于FeathersJS 开发,提供RESTful API,因此也想在小程序共用大部分API。 微信小程序中的HTTP请求 微信小程序开发中使用wx.request(Object object) 这个API进行http数据请求,且仅支持https证书加密访问。 JWT认证 微信小程序的容器并不是一个标准…