https://github.com/pararell/web-calendar
Calendar for web for notes or events
https://github.com/pararell/web-calendar
Last synced: 9 months ago
JSON representation
Calendar for web for notes or events
- Host: GitHub
- URL: https://github.com/pararell/web-calendar
- Owner: pararell
- Created: 2024-08-02T07:48:00.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-08-02T08:14:01.000Z (over 1 year ago)
- Last Synced: 2025-03-23T11:48:17.500Z (9 months ago)
- Language: JavaScript
- Homepage: https://pararell.github.io./
- Size: 59.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Web Calendar
Web Calendar is an easy-to-use npm package designed to display a customizable calendar on your web application. It offers a straightforward and flexible solution for adding calendar functionality to your projects.

## Features
- Easy integration with any web application
- Event handling capabilities
- Lightweight and fast
## Installation
To install Web Calendar, use npm:
```bash
npm install web-calendar
```
## Usage
Here is a basic example of how to use Web Calendar in your project:
### HTML
```html
```
### JavaScript
```javascript
import WebCalendar from 'web-calendar';
css
import 'web-calendar/css/style.css';
// argument is number of months from current one
const calendar = new WebCalendar(12);
// eventListener to click on any day
calendar.addEventListener("dayClicked", (event) => {
console.log(event.detail);
});
```
## Contributing
We welcome contributions to Web Calendar! If you have suggestions, bug reports, or want to contribute code, please open an issue or submit a pull request on our [GitHub repository](https://github.com/pararell/web-calendar).
## License
Web Calendar is licensed under the [MIT License](LICENSE).
---
Enjoy using Web Calendar! If you have any questions or feedback, feel free to reach out to us.