1.0.0 • Published 12 months ago

mental-support v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
12 months ago

Support

Mental-Support is a Node.js module that provides mental health tips and inspirational quotes for developers and anyone looking to maintain a healthy mindset.

Installation

You can install the mental-support module via npm:

npm install mental-support

Usage

Example Usage in an Express Server

import express from 'express';
import main from 'mental-support';

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

app.get('/', (req, res) => {
    res.send('<h1>Welcome to the Mental-Support Module</h1>');
});

app.listen(port, () => {
    console.log(`Server running at http://localhost:${port}`);
    main(); // Call main function to display mental health tips and quotes
});