Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Releases: serhiisol/node-decorators

Common#1.0.0

30 Jan 11:48
Compare
Choose a tag to compare

Common#1.0.0

  • New common decorators

Express#1.2.0

26 Jan 17:13
Compare
Choose a tag to compare

Express#1.2.0

  • Added controller-based middleware - @controller(baseUrl: string, [middleware]?)
  • moved route-based middleware to route definition decorator - @get(url: string, [middleware]?)
  • renamed bootstrapControllers to attachControllers
  • @Middleware moved to deprecated, will be removed in 2.0.0
  • bootstrapControllers moved to deprecated, will be removed in 2.0.0

Socket#1.3.2

22 Dec 16:58
Compare
Choose a tag to compare
  • Added wrap option for @socket(WrapperClass?) decorator, now you can pass wrapper class in it, to get extended functionality over the socket, optional parameter, e.g.:
class SocketWrapper {
  constructor(private socket: SocketIO.Socket) {}
}