https://github.com/mhshajib/event_calendar
Realtime custom event calendar with moment.js, socket-io, nodejs, express-js, mongodb and angularjs
https://github.com/mhshajib/event_calendar
angularjs bootstrap3 express moment-js mongodb mongoose nodejs socket-io
Last synced: 11 months ago
JSON representation
Realtime custom event calendar with moment.js, socket-io, nodejs, express-js, mongodb and angularjs
- Host: GitHub
- URL: https://github.com/mhshajib/event_calendar
- Owner: mhshajib
- License: mit
- Created: 2017-09-27T11:02:48.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-10-02T06:16:14.000Z (almost 9 years ago)
- Last Synced: 2025-07-20T22:38:28.092Z (about 1 year ago)
- Topics: angularjs, bootstrap3, express, moment-js, mongodb, mongoose, nodejs, socket-io
- Language: JavaScript
- Homepage:
- Size: 467 KB
- Stars: 11
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Event Calendar
Realtime custom event calendar with moment.js, socket-io, nodejs, express-js, mongodb and angularjs.
##### DEMO : http://34.224.106.211:3300

### Requirements
* nodejs
* npm
* mongodb
### Installation
* Clone repository using git
```bash
$ git clone https://github.com/mhshajib/event_calendar.git
```
* Go to project directory
```bash
$ cd event_calendar
```
* Install dependencies
```bash
$ npm install
```
If it's showing error try it as superuser
```bash
$ sudo npm install
```
It'll install all your required dependencies listed on package.json
### Testing and Run
* Before start please make sure you have mongodb istalled and running , if not run it using this command.
``` bash
$ sudo service mongod start
```
* Let's test it before run
``` bash
$ npm test
```
If everything goes well it'll show you something like this.

* Run application
``` bash
$ npm start
```
Your realtime event calendar is ready to use.
### USAGE
* Go to your browser go to http://localhost:3300
You'll get your calendar of current date and it'll look like this.

* At top right corner there are next and previous buttons, which are used to navigate the month.
* At top right corder of each date there is a plus button, which is used to create an event on that specific date.
* Now enter the " Title " and " Description " of your event and save it.

* After saving ther are three buttons on every event, which are view, edit and delete.

* Clicking on the eye icon it'll show you the event in view mode.

* Clicking on the pencil icon it'll show you the event in edit mode, so here you can change the title and description and update it.

* Clicking on the trash icon it'll show you a confirm prompt and if you click yes then it'll remove the event from this day.

#### This Calendar is a realtime calendar so you can open it in multiple browser and if you make any operation(create, edit, delete) at any date then it'll reflect immediately on all other browsers.
### **License**
The **event_calendar** is a open-source software licensed under the MIT License.