Skip to content

rngzhi/forum-frontend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Forum Frontend

This project is developed based on CVWO sample app. The project is a basic frontend prototype of a web forum application, where the backend part can be referred here.

Getting Started

Running the app

  1. Fork this repo.
  2. Clone your forked repo.
  3. Open your terminal and navigate to the directory containing your cloned project.
  4. Install dependencies for the project by entering this command:
yarn install
  1. Run the app in development mode by entering this command:
yarn start
  1. Open http://localhost:3000 to view it in the browser.
  2. You should see a page like this. Basic Page

Navigating the code

This is the main file structure

.
├── node_modules
├── public
├── src
├── README.md
├── tsconfig.json
├── package.json
├── .eslintrc.js
├── .prettierrc.js
└── yarn.lock

Main directories/files to note:

  • src usually includes all your source code. That is where most of your functional code will be.
  • README.md is a form of documentation about the project. It is what you are reading right now.
  • package.json contains important metadata, for example, the dependencies and available scripts in the project.
  • .eslintrc.js contains the configuration for ESLint. ESLint is a tool to help enforce code consistency.
  • .prettierrc.js contains the configuration for Prettier. Prettier is a tool to help format code.

About

A basic frontend prototype of a web forum application.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published