# expressjs-helper

> express-helper

Latest version **0.1.1** (published 2023-10-01) · MIT license · 0 weekly downloads

## Install

```sh
npm install expressjs-helper
pnpm add expressjs-helper
yarn add expressjs-helper
bun add expressjs-helper
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.1 |
| Published | 2023-10-01 |
| First published | 2023-09-24 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 41.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Dltmd202 |
| Maintainers | dltmd202 |
| Keywords | express, express-helper, helper, mvc |

## Links

- npm: https://www.npmjs.com/package/expressjs-helper
- Repository: https://github.com/express-helper/express-helper
- Homepage: https://github.com/express-helper/express-helper#readme
- Issues: https://github.com/express-helper/express-helper/issues
- npm.io page: https://npm.io/package/expressjs-helper

## Dependencies (2)

- [express](https://npm.io/package/express.md) ^4.18.2
- [reflect-metadata](https://npm.io/package/reflect-metadata.md) ^0.1.13

## Alternatives

- [lodash.assign](https://npm.io/package/lodash.assign.md) — 2.3M weekly downloads
- [lodash.chunk](https://npm.io/package/lodash.chunk.md) — 1.8M weekly downloads
- [react-native-ios-utilities](https://npm.io/package/react-native-ios-utilities.md) — 138.5K weekly downloads
- [@technically/lodash](https://npm.io/package/@technically/lodash.md) — 50.9K weekly downloads
- [@fluid-topics/ft-icon](https://npm.io/package/@fluid-topics/ft-icon.md) — 20.6K weekly downloads

## Recent versions

- 0.1.1 (latest) — 2023-10-01
- 0.1.0 — 2023-10-01
- 0.0.5 — 2023-09-24
- 0.0.4 — 2023-09-24
- 0.0.3 — 2023-09-24
- 0.0.2 — 2023-09-24
- 0.0.1 — 2023-09-24

## README

# expressjs-helper

This library is a utility library that runs on top of express and is lightweight, 
but supports many convenient functions for using express.

```bash
npm i expressjs-helper
```

Only [TypeScript](https://www.typescriptlang.org/) is supported.


## How to use

```typescript
// controller/TestController.ts
@RestController()
export class TestController{

    @Get("/hello")
    get(){
        return "helloWorld";
    }
}

// app.ts
const app: Express = express();
const port = 8000;

app.use(expressHelper());
app.use(expressHelperEndpoint());


app.listen(port, () => {
    console.log(`Server is running on http://localhost:${port}`);
});
```

---
_Source: https://npm.io/package/expressjs-helper · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
