typescript-rest icon indicating copy to clipboard operation
typescript-rest copied to clipboard

This is a lightweight annotation-based expressjs extension for typescript.

Results 78 typescript-rest issues
Sort by recently updated
recently updated
newest added

There is a problem with the library, the dependency of @types/express has been updated to a version that gives the error: Argument of type 'Request ' is not assignable to...

It looks like in the sendFile method in ServiceInvoker, the content disposition is hardcoded to attachment. Is there a way to override?

Hi! First of all, awesome lib. I've been using it in a couple of projects that already reached production and so far it's been **delightful**. I noticed an error during...

To create a new Service Autenticator for firebase and get roles directly from database, getRoles functions need to be async ``` async getRoles(req: express.Request) { let user = await getRepository(User).findById(req.user...

As of today you can extend endpoints from a "base" class, which is useful for CRUDs like this example: ```typescript export default CRUD { @GET async readAllEntities() { //... }...

Hello. Is it possible to inject @context with request and response in other ioc services, which are not annotated with @path ?

@thiagobustamante Thanks for your Awesome work :) Can you please help me to get the decoded user id I am done with integration everything is working fine. ``` private configureAuthenticator()...

Hi I am facing a weird issue. Please assist. I setup a controller in the same way as defined in the [documentation](https://www.npmjs.com/package/typescript-rest) `@Path("/hello") class HelloService { @Path(":name") @GET sayHello( @PathParam('name')...