Project background

I do not know if you have the same situation as me, always need to understand some cutting-edge technology; The purpose may be to make the technology better, or it may be the fear of falling behind. In short, we need to learn some cutting-edge information from various websites.

For example, I often study on sites like Hacker News, Medium, Dev.to, Twitter, Ruan Yifeng, GitHub Focus, Weibo, V2EX, Ruby China, GitHub Trending, Digging, OS China, DEVURLS. After sorting out the content worth sharing every day, published to the company’s QQ group, so that everyone and I benefit at the same time.

The process of learning and organizing is very time consuming. So I hope to have a wechat group like Teacher Ruan Yifeng’s weekly share or Ant Financial’s Chen Cheng to learn valuable things quickly.

Maybe I hadn’t found this source yet, so I decided to do it myself, which led to this open source project.

This project will share the main topics of the front-end technology system. The content will be divided into articles, tools, news and videos. If my share is helpful to you, please give ⭐️ to let more people know it.

Access address: wubaiqing. Making. IO/zaobao

RSS: wubaiqing. Making. IO/zaobao/RSS….

Making: github.com/wubaiqing/z…

Reading effect

Share resources, participate in dedication

The project installation method is extremely simple, if there are better resources are welcome to share, you can choose to submit Issue or submit RP. For details about how to submit the RP, see GitHub Help.

The installation

To download the source code, execute the following command:

# clone code
$ git clone https://github.com/wubaiqing/zaobao.git
$ cd zaobao
Copy the code

Once the code is downloaded, you need to install dependencies:

# install dependencies
$ yarn 

Check compliance with documentation
$ yarn lint:md

# Start reading
$ yarn docs:dev 
Copy the code

Open http://localhost:8080/zaobao/ in your browser

update

Running the following command in the Zaobao folder will pull the latest version from the GitHub repository.

# pull code
$ git pull
Copy the code