A simple social network application built with Node.js and Express.
- User registration and authentication
- Create text posts
- Public feed showing all posts
- Session-based authentication
- Simple and clean UI
-
Install dependencies:
npm install
-
Start the server:
npm start
For development with auto-reload:
npm run dev
-
Open http://localhost:3000 in your browser
- Register a new account
- Login with your credentials
- Create posts from the home page
- View all posts in the feed
- Express.js web framework
- express-session for session management
- bcryptjs for password hashing
- EJS templating engine
- In-memory storage for users and posts