├── .gitignore ├── LICENSE ├── README.md ├── nodejs-backend ├── auth │ ├── passport.js │ └── utils.js ├── db │ └── models.js ├── package-lock.json ├── package.json ├── public_static │ ├── login.html │ └── signup.html ├── routes │ ├── api │ │ ├── events.js │ │ ├── index.js │ │ ├── invitees.js │ │ └── users.js │ └── index.js ├── server.js └── utils │ └── inviteeMailer.js └── react-frontend ├── .babelrc ├── package-lock.json ├── package.json ├── server.js ├── src ├── Components │ ├── Common │ │ ├── common-button.jsx │ │ └── common-header.jsx │ ├── EventDashboard │ │ ├── event-dashboard.jsx │ │ ├── event-invitees.jsx │ │ ├── hosting-row.jsx │ │ └── hosting-table.jsx │ └── auth │ │ └── login-form.jsx └── app.jsx ├── static ├── bundle.js └── index.html └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/README.md -------------------------------------------------------------------------------- /nodejs-backend/auth/passport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/nodejs-backend/auth/passport.js -------------------------------------------------------------------------------- /nodejs-backend/auth/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/nodejs-backend/auth/utils.js -------------------------------------------------------------------------------- /nodejs-backend/db/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/nodejs-backend/db/models.js -------------------------------------------------------------------------------- /nodejs-backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/nodejs-backend/package-lock.json -------------------------------------------------------------------------------- /nodejs-backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/nodejs-backend/package.json -------------------------------------------------------------------------------- /nodejs-backend/public_static/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/nodejs-backend/public_static/login.html -------------------------------------------------------------------------------- /nodejs-backend/public_static/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/nodejs-backend/public_static/signup.html -------------------------------------------------------------------------------- /nodejs-backend/routes/api/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/nodejs-backend/routes/api/events.js -------------------------------------------------------------------------------- /nodejs-backend/routes/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/nodejs-backend/routes/api/index.js -------------------------------------------------------------------------------- /nodejs-backend/routes/api/invitees.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/nodejs-backend/routes/api/invitees.js -------------------------------------------------------------------------------- /nodejs-backend/routes/api/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/nodejs-backend/routes/api/users.js -------------------------------------------------------------------------------- /nodejs-backend/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/nodejs-backend/routes/index.js -------------------------------------------------------------------------------- /nodejs-backend/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/nodejs-backend/server.js -------------------------------------------------------------------------------- /nodejs-backend/utils/inviteeMailer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/nodejs-backend/utils/inviteeMailer.js -------------------------------------------------------------------------------- /react-frontend/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | 3 | presets : ["es2015", "react"] 4 | } 5 | -------------------------------------------------------------------------------- /react-frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/react-frontend/package-lock.json -------------------------------------------------------------------------------- /react-frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/react-frontend/package.json -------------------------------------------------------------------------------- /react-frontend/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/react-frontend/server.js -------------------------------------------------------------------------------- /react-frontend/src/Components/Common/common-button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/react-frontend/src/Components/Common/common-button.jsx -------------------------------------------------------------------------------- /react-frontend/src/Components/Common/common-header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/react-frontend/src/Components/Common/common-header.jsx -------------------------------------------------------------------------------- /react-frontend/src/Components/EventDashboard/event-dashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/react-frontend/src/Components/EventDashboard/event-dashboard.jsx -------------------------------------------------------------------------------- /react-frontend/src/Components/EventDashboard/event-invitees.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/react-frontend/src/Components/EventDashboard/event-invitees.jsx -------------------------------------------------------------------------------- /react-frontend/src/Components/EventDashboard/hosting-row.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/react-frontend/src/Components/EventDashboard/hosting-row.jsx -------------------------------------------------------------------------------- /react-frontend/src/Components/EventDashboard/hosting-table.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/react-frontend/src/Components/EventDashboard/hosting-table.jsx -------------------------------------------------------------------------------- /react-frontend/src/Components/auth/login-form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/react-frontend/src/Components/auth/login-form.jsx -------------------------------------------------------------------------------- /react-frontend/src/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/react-frontend/src/app.jsx -------------------------------------------------------------------------------- /react-frontend/static/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/react-frontend/static/bundle.js -------------------------------------------------------------------------------- /react-frontend/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/react-frontend/static/index.html -------------------------------------------------------------------------------- /react-frontend/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnysetia93/Event-Management-NodeJS-ReactJS/HEAD/react-frontend/webpack.config.js --------------------------------------------------------------------------------