All Projects → ALPHAVIO → WordNook

ALPHAVIO / WordNook

Licence: MIT license
Dynamically updating blogging website to upload articles and blog posts on various topics, developed using ejs template engine and node js in the backend.

Projects that are alternatives of or similar to WordNook

mini-express-boilerplate
A minimal Express boilerplate with passport user authentication, mongoose and some security setup configured
Stars: ✭ 15 (-81.25%)
Mutual labels:  mongoose, expressjs, ejs
Cmms
Computerized Maintenance Management System
Stars: ✭ 31 (-61.25%)
Mutual labels:  heroku, mongoose, ejs
ZestX-Frontend
Month-Long Fest Website ZestX with some Awsome UI and Intact Backend. Implemented admin page for user and event management
Stars: ✭ 28 (-65%)
Mutual labels:  heroku, expressjs
mern-stack-application
A MERN stack e-commerce website.
Stars: ✭ 45 (-43.75%)
Mutual labels:  mongoose, expressjs
docker-node-express-boilerplate
Boilerplate for quickly bootstrapping production-ready RESTful APIs / microservices
Stars: ✭ 113 (+41.25%)
Mutual labels:  mongoose, expressjs
Express-MongoDB-Authentication
A simple authentication app using Express & MongoDB
Stars: ✭ 15 (-81.25%)
Mutual labels:  mongoose, expressjs
nestjs-rest-sample
NestJS RESTful APIs Sample
Stars: ✭ 204 (+155%)
Mutual labels:  mongoose, expressjs
express-mquery
Expose mongoose query API through HTTP request.
Stars: ✭ 37 (-53.75%)
Mutual labels:  mongoose, expressjs
nodejs-restapi
Simple Rest-API With Login System, Built using MongoDB, Express.js, and Node.js
Stars: ✭ 68 (-15%)
Mutual labels:  heroku, ejs
dhiwise-nodejs
DhiWise Node.js API generator allows you to instantly generate secure REST APIs. Just supply your database schema to DhiWise, and a fully documented CRUD APIs will be ready for consumption in a few simple clicks. The generated code is clean, scalable, and customizable.
Stars: ✭ 224 (+180%)
Mutual labels:  mongoose, expressjs
ng-nest-cnode
Angular 10 Front-End and Nestjs 7 framework Back-End build Fullstack CNode
Stars: ✭ 17 (-78.75%)
Mutual labels:  mongoose, expressjs
AmigoChat-Realtime-Chat-Application
AmigoChat is a responsive real-time chat application built on MERN Stack and Socket io.
Stars: ✭ 22 (-72.5%)
Mutual labels:  mongoose, expressjs
nodejs-shopping-cart
NodeJS / Express / MongoDB - Shopping Cart (monolithic app with handlebars)
Stars: ✭ 42 (-47.5%)
Mutual labels:  mongoose, expressjs
express-mongodb-crud
Web Application CRUD using Nodejs and Mongodb
Stars: ✭ 87 (+8.75%)
Mutual labels:  mongoose, expressjs
MERN-JWT-AND-ROLE-AUTH
Neccessary features needed for your mern Application are now available.
Stars: ✭ 30 (-62.5%)
Mutual labels:  mongoose, expressjs
Natours
An awesome tour booking web app written in NodeJS, Express, MongoDB 🗽
Stars: ✭ 94 (+17.5%)
Mutual labels:  mongoose, expressjs
Online-Examination-System
Technologies : React js, Node js, Express js, Mongo Db, Ant Design, Redux js Key features: 1. User management 2. Modular code 3. Permission management 4. Persistent answers on page refresh in the test portal 5. Examination results using graphs 6. Results can directly be downloaded as excel sheet 7. Feedback system
Stars: ✭ 37 (-53.75%)
Mutual labels:  mongoose, expressjs
typijs
The Angular CMS Framework for building fully-featured SPA sites powered by NodeJS and MongoDB with TypeScript
Stars: ✭ 141 (+76.25%)
Mutual labels:  mongoose, expressjs
commerce
🛒 e-commerce-platform
Stars: ✭ 54 (-32.5%)
Mutual labels:  mongoose, expressjs
E-Commerce-Website-Using-NodeJS
🌟 💻 ᴛʜɪꜱ ɪꜱ ᴀ ᴍᴏɴᴏʟɪᴛʜɪᴄ ᴀᴘᴘʟɪᴄᴀᴛɪᴏɴ ᴜꜱɪɴɢ ɴᴏᴅᴇ ᴊꜱ ᴀꜱ ᴀ ʙᴀᴄᴋᴇɴᴅ ᴛᴇᴄʜɴᴏʟᴏɢʏ 🎯 🚀
Stars: ✭ 12 (-85%)
Mutual labels:  mongoose, ejs

WordNook


A sneak peek into what we have here

wordnook


About-

Forks Stars GitHub issues GitHub PRs Dependabot Status

All Contributors

Discord

  • 'Blog' and 'blogging' are now loosely used for content creation and sharing on social media, especially when the content is long-form and one creates and shares content on regular basis.

Edit with Gitpod

  • This is a dynamically updating Blog posting website developed primarily using Node Js with EJS template engine and Mongoose as ODM(Object Data Modeling library).
    Visit website

Technology Stack 🛠️

  • Coding Languages: JavaScript HTML5 CSS3

  • Tools & Frameworks: NodeJS Express.js MongoDB Mongoose EJS template engine

  • Project Management Tools: GitHub Git


Environment Setup for local use-

  • Drop a on the GitHub repository.

  • Download Git (when you install Git, Git Bash also gets installed by default)

Option 1 (Installation using NPM and MongoDB)



  • Robo 3T is a desktop graphical user interface (GUI) for Mongo DB. It can help to skip running all the Mongo DB commands manually every time we want to access the data. Download Robo 3T (optional)

  • Clone the repository by running command
git clone https://github.com/<your user-name>/WordNook.git

in your git bash.

  • Run command cd WordNook.

  • Run this command to install all dependencies for the project.
npm install

  • Adding secret key for JWT auth.
    • Run this command when inside the root directory to make a .env file.
    touch .env
    
    • Now add this to the .env file
    SECRET_KEY = AlphaVio
    URL = mongodb://localhost:27017/wordnookDB
    NODE_ENV= 'development'
    

  • Testing : Run this command on your terminal/ bash to start the Mongo server on port 27017(default).
mongod

  • Run this command to start the project.
npm start

or

  • Run this command to start the project as a developer.
npm run dev

  • Open link to view the website in your browser window if it doesn't open automatically.
http://localhost:3000/

Option 2 (Installation using Docker)

  • Download and install Docker.

  • Clone the repository by running command

git clone https://github.com/<your user-name>/WordNook.git

in your git bash.

  • Run command cd WordNook.

  • Run this command to start the project:
docker-compose up --build 
  • Now explore the project and make the changes as you want. Once the changes are made then run the following command again:
docker-compose up --build 

This would again create a new image with your changes and will use it to start the containers. Now when you visit http://localhost:3000/ you would see your changes.

  • Once you are satisfied and want to make a PR then run following command:
docker-compose down 

This would stop all the running containers and will also delete them.

  • Check out our docker image at DockerHub: Wordnook Image or you can directly search wordnook on DockerHub (This just for your reference and is not required for installation)

  • You can learn more about Docker and its implementation at Docker Documentation

  • You can learn more about EJS template engine and its syntax to know how we can use it inside our HTML using the documentation


  • Now you are all set to use this project.

Some useful Mongo DB commands if you are using the terminal instead of the GUI-

show dbs
use db <db name>
show collections
<db name> .find()

Project Deployed on Heroku : Visit WordNook


Note -

    • If your git shows an issue with your package-lock.json while installing dependencies or throws error that lockfile version-2 is not compatible with your system Then check your npm version by running command
     npm --version
    
    • npm version should be 7 and above for lockfile version-2 that would come by default if you have a node version 15 and above.
      List of Node.js releases and corresponding npm versions

    • After upgrading your npm version, you can delete your package-lock.json file and run npm install again to fix the issue.

Disclaimer-

The Contact Us feature might not work in the local environment since the API-Key has not been shared. If you still want to work on it, generate your own API key from Mail Gun and include it in the .env file as

MAILGUN_API_KEY = <your-api-key>

Open Source Events Project is associated with:

1. JGEC Winter of Code

  • JWoC ( JGEC Winter of Code) is a program organised by Developers JGEC in collaboration with Sristi 2020 which helps students to plunge into the realm of Open Source contribution and Software Development.

2. Mexili Winter of Code

  • Mexili is a Free and Open Source organization whose motivation is to funnel learning and implementation through Open Source Software Development.

3. GirlScript Summer of Code

  • GirlScript Summer of Code is the 3 month long Open Source program conducted by GirlScript Foundation, started in 2018, with an aim to help beginners get started with Open Source Development while encouraging diversity.

4. PClub Summer of Code

  • PSOC( PClub Summer of Code ) is the 2 month long Open Source program during summers conducted by Programming Club, UIET, with an aim to help beginners get started with Open Source Development while encouraging Diversity .

5. Let's Grow More Summer of Code

  • Let's Grow More Summer of Code is a one month long Open Source program organized by LetsGrowMore Community to encourage student participation in open source software development under the guidance of mentors from the open source community.

6. Developer Days

  • The league of Developer Days is a 5-week long Bootcamp + Hackathon event, organized by Developer Days Community consisting of various sessions and challenges including contributions to Open Source Projects, with an aim to encourage students to get familiar with hands-on projects and software development.

Maintainers


Pranav Mendiratta

💻📖 🚧

Ananya Negi

💻 📖 🚧

Rushan Khan

💻 📖 🚧

Pranav Singh

💻📖 🚧

Ayush Jain

💻 📖 🚧

Contributors

Thanks goes to these wonderful people (emoji key):


Anubhab Sarkar

🎨

Subhra264

💻

Sahil Saha

💻

uttu2

📖

pankaj kumar bijarniya

📖 💻

Niveditha Palli

🖋 💻

Lucky kumari

📖 💻

kanhaiya lal

💻

Tushar Jain

📖 💻

Karun Karthik

💻

Harshit Aditya

💻

Aayush Garg

📖 💻

Abhijay Jain

💻 📖

Monojit Chakraborty

💻

Ankita297

💻 📖

Aniket Lodh

💻

Monika Jha

💻

vismitap

💻

Ananya Negi

💻 📖 🚧

Rushan Khan

💻 📖 🚧

Ayush Jain

💻 📖

Aanchal Rakheja

💻 🎨

Pranav Singh

💻

Tanishq Arya

💻

Satyam Singh

💻

Soumya Singh

💻

Osama Magdy

💻

Rhythm Verma

💻

This project follows the all-contributors specification. Contributions of any kind welcome!


Stargazers over time 🌟

Stargazers over time

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].