search
HomeDevelopment ToolsgitShare some GitHub libraries worthy of collection by front-end developers

Share some GitHub libraries worthy of collection by front-end developers

It’s always nice to have a ton of resources on hand.

As a coder, we need to focus on functionality and best practices instead of writing boilerplate code over and over again. Eliminating wasted effort and investing time in learning to use the right tools or knowing how to use useful resources can greatly help us save time.

Through this article, we will learn about some GitHub libraries that can greatly help us improve our WEB development skills. These libraries will also help you write more Good code.

Node.js Best Practices

Share some GitHub libraries worthy of collection by front-end developers

This library is a great place to keep you informedNode world and learn about best practices when using it. With 40k Stars and 133 contributors, this library is updated almost daily.

This library summarizes and organizes the best practices of higher-ranked Node.js, including Node.js Docker best practices. Currently has more than 80 best practices, style guides and structural recommendations.

Some common best practices include:
  • Better organization of projects
  • Error handling practices
  • Coding style practices
  • Testing and overall quality practice
  • Carry out production practice, etc.

Click to jump to the warehouse

HTML5 Boilerplate

Share some GitHub libraries worthy of collection by front-end developers

HTML5 Boilerplate is a professional front-end template for building fast, robust and adaptable Web Application or website.

This project is the product of years of iterative development and community knowledge. It doesn't impose a specific development philosophy or framework, so you have the freedom to build your code the way you want.

Includes predefined functions like:
  • Normalize.css
  • jQuery with CDN
  • Apache Server Configs
  • Useful CSS Helper classes
  • Default styles, performance optimization, etc.

Copy and paste the required files according to what you want to use and how to use it. Just go into your project directory. This gives you a configured template, speeding up development.

Click to jump to the warehouse

RealWorld

Share some GitHub libraries worthy of collection by front-end developers

##Master one The core concepts and ideologies of the new framework are not a downer.

If you don't understand the concept properly, you need to read the documentation, run the sample code, disassemble the sample application and put it back together, install the

CLI locally, etc., It takes so much experience that it's frustrating.

RealWorld allows you to choose any frontend (React, Angular2, etc.) and any backend (Node, Django etc.) and integrate them together to see real examples of applications.

Since these implementations are related to technology stacks, they obviously cannot be mixed, but they still follow the same functional and UX specifications.

Some common integration examples:
    Angular ngrx nx
  • ClojureScript re-frame
  • React / MobX
  • Go Gin
  • NestJS TypeORM/Prisma
You can find endless examples in the repository. Go find it!

Click to jumpto the warehouse

You Don't Know JS Yet

Share some GitHub libraries worthy of collection by front-end developers##This is a series of books that delve into the core mechanics of the

JavaScript

language. All books are free and you can read them online at any time.

The author's recommended reading order is:
  • Get Started
  • Scope & Closures
  • Objects & Classes (not started yet)
  • Types & Grammar (Not started yet)
  • Sync & Async (Not started yet)
  • ES.Next & Beyond (Not started yet)

Click to jumpto the warehouse

Airbnb JavaScript Guide

Share some GitHub libraries worthy of collection by front-end developers

##This is

Airbnb Very precise and professional style guide provided.

This guide will help you understand

JavaScript from the ground up by diving into the basics and code snippets.

Some of the popular stuff covered in this guide are:
    Arrow Functions
  • Variable Hoisting
  • Destructuring
  • Comments
  • Performance
  • Test

Click to jump to the warehouse

Storybook

Share some GitHub libraries worthy of collection by front-end developers

Storybook is a development environment for UI components. It allows you to browse the component library, view the different states of each component, and interact Develop and test components locally.

Storybook Runs outside of app, which allows you to develop UI components independently, improving component reusability, testability and development speed . You can build quickly without having to worry about application-specific dependencies.

It comes with a

CLI and some code examples for you to get familiar with Storybook.

Click to jump to the warehouse

Front-End-Checklist

Share some GitHub libraries worthy of collection by front-end developers

##Front-End-Checklist

is an exhaustive A list of all the elements that need to be in place or tested before a website or HTML page is put into use. It is a warehouse developed based on the front-end

Web

, paying more attention to performance, security and SEO. All items in

Front-End-Checklist

are required for most projects, but some elements can be omitted. Includes:

Documents or articles
  • Online tools/testing tools
  • Media or video content
Click to Jump

Go to the repositoryInspiration and Resources

This post is inspired by

Tech Sapien

and all his amazing work . The pictures in the library are also taken from the same place. Summary

All the libraries mentioned above are not the only resources available, I'm sure there are tons of amazing projects out there. These are some of the resources that I have found useful and that I am often immersed in myself.

Don’t forget to give these library points

Star

. To thank all the wonderful contributors for creating such a useful resource for us

Share some GitHub libraries worthy of collection by front-end developers

Original in English Address: https://dev.to/sayanide/best-github-repos-for-web-developers-9id

If there are any mistakes in translation, please correct me. I hope you can correct me. Helps.

Tutorial recommendation: "
Git Tutorial

"

The above is the detailed content of Share some GitHub libraries worthy of collection by front-end developers. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:segmentfault. If there is any infringement, please contact admin@php.cn delete
Git and GitHub: Exploring Their Roles and FunctionsGit and GitHub: Exploring Their Roles and FunctionsMay 09, 2025 am 12:25 AM

The role and function of Git and GitHub in software development is to manage code and collaborative development. Git efficiently manages code versions through commit, branch and merge functions, while GitHub provides code hosting and collaboration tools such as PullRequest and Issues to improve team collaboration efficiency.

GitHub: Discovering, Sharing, and Contributing to CodeGitHub: Discovering, Sharing, and Contributing to CodeMay 08, 2025 am 12:26 AM

GitHub is the preferred platform for developers to discover, share and contribute code. 1) Find specific code bases through search functions, such as Python projects. 2) Create a repository and push code to share with developers around the world. 3) Participate in open source projects and contribute code through Fork and PullRequest.

Using Git with GitHub: A Practical GuideUsing Git with GitHub: A Practical GuideMay 07, 2025 am 12:11 AM

Git is a version control system, and GitHub is an online platform based on Git. The steps to using Git and GitHub for code management and team collaboration include: 1. Initialize the Git repository: gitinit. 2. Add files to the temporary storage area: gitadd. 3. Submit changes: gitcommit-m"Initialcommit". 4. Related to the GitHub repository: gitremoteaddoriginhttps://github.com/username/repository.git. 5. Push code to GitHub: gitpush-uoriginmaste

GitHub's Impact: Software Development and CollaborationGitHub's Impact: Software Development and CollaborationMay 06, 2025 am 12:09 AM

GitHub has a far-reaching impact on software development and collaboration: 1. It is based on Git's distributed version control system, which improves code security and development flexibility; 2. Through functions such as PullRequest, it improves team collaboration efficiency and knowledge sharing; 3. Tools such as GitHubActions help optimize the development process and improve code quality.

Using GitHub: Sharing, Managing, and Contributing to CodeUsing GitHub: Sharing, Managing, and Contributing to CodeMay 05, 2025 am 12:12 AM

The methods of sharing, managing and contributing code on GitHub include: 1. Create a repository and push code, and write README and LICENSE files; 2. Use branches, tags and merge requests to manage code; 3. Fork the repository, modify and submit PullRequest contribution code. Through these steps, developers can effectively use GitHub to improve development efficiency and collaboration capabilities.

Git vs. GitHub: A Comparative AnalysisGit vs. GitHub: A Comparative AnalysisMay 04, 2025 am 12:07 AM

Git is a distributed version control system, and GitHub is a Git-based collaboration platform. Git is used for version control and code management, while GitHub provides additional collaboration features such as code review and project management.

Git vs. GitHub: Understanding the DifferenceGit vs. GitHub: Understanding the DifferenceMay 03, 2025 am 12:08 AM

Git is a distributed version control system, and GitHub is an online platform based on Git. Git is used for version control, branch management and merger, and GitHub provides code hosting, collaboration tools and social networking capabilities.

GitHub: The Frontend, Git: The BackendGitHub: The Frontend, Git: The BackendMay 02, 2025 am 12:16 AM

Git is a back-end version control system, and GitHub is a front-end collaboration platform based on Git. Git manages code version, GitHub provides user interface and collaboration tools, and the two work together to improve development efficiency.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.