Create a Twitter Clone with Node.js, Socket.IO and MongoDB
Create a Twitter Clone with Node.js, Socket.IO and MongoDB, available at $84.99, has an average rating of 5, with 274 lectures, based on 671 reviews, and has 5197 subscribers.
You will learn about How to create a social network just like Twitter Node JS Socket IO JavaScript MongoDB Mongoose HTML CSS This course is ideal for individuals who are Anyone interested in web development or Anyone interested in building a site like Twitter It is particularly useful for Anyone interested in web development or Anyone interested in building a site like Twitter.
Enroll now: Create a Twitter Clone with Node.js, Socket.IO and MongoDB
Summary
Title: Create a Twitter Clone with Node.js, Socket.IO and MongoDB
Price: $84.99
Average Rating: 5
Number of Lectures: 274
Number of Published Lectures: 274
Number of Curriculum Items: 274
Number of Published Curriculum Objects: 274
Original Price: £44.99
Quality Status: approved
Status: Live
What You Will Learn
- How to create a social network just like Twitter
- Node JS
- Socket IO
- JavaScript
- MongoDB
- Mongoose
- HTML
- CSS
Who Should Attend
- Anyone interested in web development
- Anyone interested in building a site like Twitter
Target Audiences
- Anyone interested in web development
- Anyone interested in building a site like Twitter
Do you want to become an expert in JavaScript, Node.js and MongoDB?
Do you want to build a real social network just like Twitter?
If so, you’re in the right place! This course will guide you step by step in creating your own Twitter clone COMPLETELYfrom scratch.
We’re talking the kind of website that will amazeanybody that sees it. The kind of website that will get you hiredin no time!
Why let me teach you?
I work as a Software Engineer at Microsoft where I build products used by millions of people all over the world! I want to take the skills I’ve gained through years of working with some of the best developers in the world and transfer them directly to you!
I’ve taught tens of thousands of students here on Udemy and created some of the most popular development courses available!
Okay so what’s the course about?
I will personally guide you, step by step, in creating your ownsocial network site just like Twitter complete with:
-
Tweets
-
Likes, comments and retweets
-
Profile pages
-
Following and followers support
-
Instant messaging in real time
-
Group chat support
-
Profile pictures
-
Cover photos
-
and much more!
Whether you are a beginner* or an experienced programmer, this course will be massively beneficial to you.
Why should I take the course?
In the programming world, the “big 4” often consists of Google, Microsoft, Facebook and Amazon. To get a job at any of these companies, you absolutely MUSTknow the essentials: HTML, CSS and JavaScript. As well as this, it is becoming increasingly important to have experience with technologies such as Node.js and database systems such as MongoDB.
If you take this course, you will have nothing to worry about because we use allof these skills extensively!
Support:
By enrolling in this course, you will have the COMPLETE support of a Microsoft Software Engineer (me). I’m always ready to answer any question you may have. Programming issues, errors, feature requests, general programming advice – it doesn’t matter, I’m always happy to help! I always aim to respond to questions within a few hours and it’s also worth noting that I’ve answered EVERY SINGLE question asked so far.
Future course discounts:
By enrolling in this course, you will get access to ALL of my current and future courses for the lowest possible discount we as instructors are capable of offering on Udemy – FOREVER.
Project portfolio:
The site you create in this course will be the highlight of your project portfolio! Any potential employer who see’s this project on your resume will want to hear all about it. The reason? They know that a project like this means you’re familiar with the wide range of technical skills they need their employees to know.
Fun!
Finally, this project is a lot of fun and I know you’ll have a great time implementing your own unique ideas as well as the ones we implement together. What are you waiting for?
*Although this course is suitable for beginners, it is not an introduction to development course. I won’t go into much detail when explaining the basic programming concepts but I’m here to help if you want more of an explanation – just let me know!
Course Curriculum
Chapter 1: Node JS Basic Overview
Lecture 1: Course promo video (from course home page)
Lecture 2: Setup and creating our first app
Lecture 3: Creating a server
Lecture 4: How to quit/stop the app from running
Lecture 5: Rendering content on the web page
Lecture 6: Supporting additional pages
Lecture 7: Adding a routing file
Lecture 8: Handling POST/GET requests (form submissions)
Chapter 2: Using NPM
Lecture 1: npm init
Lecture 2: Installing our first npm package
Lecture 3: npm install
Lecture 4: Telling git to ignore node_modules (skip if not using git)
Chapter 3: Template Engines (Pug)
Lecture 1: Setting up our project
Lecture 2: Installing Express
Lecture 3: Rendering some content on the web page
Lecture 4: Creating our first Pug template
Lecture 5: Rendering a dynamic page title
Lecture 6: Extending another pug template file
Lecture 7: Quick html improvements
Chapter 4: Registration/Login System
Lecture 1: Middleware: Redirecting the user if not logged in
Lecture 2: Adding the login route
Lecture 3: Creating the login page
Lecture 4: Adding Bootstrap
Lecture 5: Serving static files
Lecture 6: Login CSS
Lecture 7: Creating the register page
Lecture 8: Checking that the passwords match
Lecture 9: Adding body parser
Lecture 10: Checking for empty fields
Lecture 11: Getting started with MongoDB
Lecture 12: Connecting to the database
Lecture 13: Creating a reusable database connection
Lecture 14: Creating the User Schema (mongoose)
Lecture 15: Checking if username or emails are already in use
Lecture 16: Async and Await explanation
Lecture 17: Checking if the username or email are already in use
Lecture 18: Inserting a user into the collection
Lecture 19: Adding timestamps to our data
Lecture 20: Hashing the password
Lecture 21: Sessions
Lecture 22: Passing the logged in user to the client
Lecture 23: Logging in
Chapter 5: Creating the site's main layout
Lecture 1: Bootstrap grid intro
Lecture 2: Creatig a responsive layout
Lecture 3: Adding FontAwesome
Lecture 4: Choosing our navigation bar icons
Lecture 5: Styling the navigation bar
Lecture 6: Navigation icon colours
Lecture 7: Logging out
Lecture 8: Adding the page title
Chapter 6: Creating the post form
Lecture 1: Mixins
Lecture 2: Setting the default profile picture
Lecture 3: Styling the post form container
Lecture 4: Styling the textarea
Lecture 5: Adding a common javascript file
Lecture 6: Getting the entered text from the textbox
Lecture 7: Enabling the submit button when the user types
Chapter 7: Styling the posts
Lecture 1: Adding a click handler to the post button
Lecture 2: Rest API basic explanation
Lecture 3: Post API route
Lecture 4: Sending a bad request when the data is invalid
Lecture 5: Creating the posts Mongoose schema
Lecture 6: Inserting the post into the database
Lecture 7: Handling the response from the server
Lecture 8: Outputting the post content
Lecture 9: Outputting the user info from the post
Lecture 10: Styling the post body
Lecture 11: Styling the comment, retweet and like buttons
Lecture 12: Hover styles of the comment, retweet and like buttons
Chapter 8: Outputting posts onto the newsfeed
Lecture 1: Creating the home page JavaScript file
Lecture 2: Getting posts from the database
Lecture 3: Outputting posts on the page
Lecture 4: Populating the posted by data
Lecture 5: Populating our login details to save us time
Lecture 6: Calculating the timestamp of the posts
Lecture 7: Ordering the posts by newest first
Chapter 9: The like button
Lecture 1: Adding the likes field to the schemas
Lecture 2: Like button click handler
Lecture 3: Getting the post id from the clicked element
Lecture 4: Rest API request types overview
Lecture 5: Making a PUT request
Lecture 6: Checking if if the user has already like the post
Lecture 7: Inserting the like
Lecture 8: Unliking posts
Lecture 9: Returning the like result to the client
Lecture 10: Updating the button to show the new number of likes
Lecture 11: Passing the user logged in info to the client
Lecture 12: Changing button colour when post is liked
Lecture 13: Showing correct button colour when page loads
Chapter 10: Retweeting posts
Lecture 1: Setting up the retweet route
Instructors
-
Reece Kenney
Software Engineer at Microsoft
Rating Distribution
- 1 stars: 9 votes
- 2 stars: 7 votes
- 3 stars: 31 votes
- 4 stars: 150 votes
- 5 stars: 474 votes
Frequently Asked Questions
How long do I have access to the course materials?
You can view and review the lecture materials indefinitely, like an on-demand channel.
Can I take my courses with me wherever I go?
Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!
You may also like
- Top 10 Language Learning Courses to Learn in November 2024
- Top 10 Video Editing Courses to Learn in November 2024
- Top 10 Music Production Courses to Learn in November 2024
- Top 10 Animation Courses to Learn in November 2024
- Top 10 Digital Illustration Courses to Learn in November 2024
- Top 10 Renewable Energy Courses to Learn in November 2024
- Top 10 Sustainable Living Courses to Learn in November 2024
- Top 10 Ethical AI Courses to Learn in November 2024
- Top 10 Cybersecurity Fundamentals Courses to Learn in November 2024
- Top 10 Smart Home Technology Courses to Learn in November 2024
- Top 10 Holistic Health Courses to Learn in November 2024
- Top 10 Nutrition And Diet Planning Courses to Learn in November 2024
- Top 10 Yoga Instruction Courses to Learn in November 2024
- Top 10 Stress Management Courses to Learn in November 2024
- Top 10 Mindfulness Meditation Courses to Learn in November 2024
- Top 10 Life Coaching Courses to Learn in November 2024
- Top 10 Career Development Courses to Learn in November 2024
- Top 10 Relationship Building Courses to Learn in November 2024
- Top 10 Parenting Skills Courses to Learn in November 2024
- Top 10 Home Improvement Courses to Learn in November 2024