FFFFF0001 / Blog-Frontend-Project

Web frontend code for my blogs, develop with Vue.

Home Page:https://blog.coderap.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Front and back end of the separation of the blog project - front-end project

Blog has been online ,welcome to browse:https://blog.coderap.com/

中文版说明

The warehouse holds the front end code for the blog project, built using Vue.js.

Note 1: The current Master branch has begun data interworking with the backend. The full version of the test data can be viewed in this version: 6a10ff2

Note 2: The backend code repository linked with this repository is linked here BlogBackendProject and the backend code is implemented using Django + Xadmin + Django Rest Framework.

Front effect display:

Home Page

Article Page

Timeline

Article Detail Page

Comment Area

Reading Page

The overall technology stack

Achieved basic functions

Has now developed 17 pages, basically meet the needs of conventional blog. The page is as follows:

  • Homepage, Routing/
  • Article Home, Routing/artices
  • Gallery Homepage, Routing/albums
  • Movie Homepage, routing/movies
  • Reading Homepage, routing/readings
  • Article List page, route/articles/category/:id
  • Album list page, route/albums/category/:id
  • Movie list page, route/movies/category/:id
  • Reading list page, route/readings/category/:id
  • Book list page, route/books/category/:id
  • Book note list page, route/book/notes/category/:id
  • Article details page, route/article/:id
  • Album browsing page, routing/album/:id
  • Movie details page, route/movie/:id
  • Book details page, route/book/:id
  • Book note details page, route/book/note/:id
  • Timeline page, route/timeline

At present, the development of ordinary pages basically completed the development, the need for the next test to verify the details and Bug; article details page has achieved code highlighting, catalogs, reviews and other functions.

Note: The code highlighting Highlight.js plug-in, and in order to reduce the packaging volume customize the plug-in JS package, custom plug-ins stored in./src/common/js/highlight.pack.js, if you need other highlights please Custom plug-ins, custom tutorials here

The next will be achieved

  1. Will consider implementing SSR server rendering. Due to the current backend Django Rest Framework, SSR support may be postponed.
  2. Access GitHub, WeChat, Weibo, Facebook and other third-party login comments.
  3. front-end page Markdown editor access Qiniu Cloud Storage to store pictures. (Completed)
  4. Optimize the details of the gallery display.
  5. Optimize packaging volume.

How to use

  1. Clone this project
  2. Install the node environment
  3. In the project root directory, execute the following command to install the dependencies:
# install dependencies
npm install
  1. Next, you need to do some backend support for the project configuration:

Note: You can choose to browse the offline version: 6a10ff2, this version is not complete, but shows the most basic page, all the data are local test data.

The backend of this project uses Django + Xadmin + Django Rest Framework. The code repository is located at BlogBackendProject. You need to configure it online according to the repository code. After configuring, please refer to the ./src/api/api.js text in this project Your backend environment configures the backend interfaces as follows:

// host: your back-end server address
// port: your back-end server port
// path: custom path
let localHost = 'http://host:port/path';
  1. After the above configuration is completed, run the following command to enter the development environment:
# serve with hot reload at localhost: 8080
npm run dev

Or run the following command to package:

# build for production with minification
npm run build

License

Apache-2.0

Copyright (c) 2016-present, LennonChin

About

Web frontend code for my blogs, develop with Vue.

https://blog.coderap.com

License:Apache License 2.0


Languages

Language:Vue 80.1%Language:JavaScript 12.9%Language:CSS 6.9%Language:HTML 0.2%