1.0.0 • Published 1 year ago

apirevup v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

apiRevUp

a simple cacheMiddleware with simple strategy make your API faster.

Installation

Use the package manager npm to install apiRevUp.

npm i apirevup

Usage

import express, { Request, Response } from 'express';
import apiRevUp from "apirevup";

const app = express();
const port = 3000;

// Add the rushAPI middleware to the app
app.use(apiRevUp({
maxAge: 300000 // Set the max age of the cache to 5 minutes (300,000 ms)
}); 

app.get('/', (req: Request, res: Response) => {
  res.send('Hello rushAPI!');
});

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

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

1.0.0

1 year ago