search
HomeWeb Front-endJS TutorialFront-end new technology Chinese documentation
Front-end new technology Chinese documentationJun 17, 2017 pm 05:20 PM
Chinesefront enddocumentnew technology

nodejs Chinese website, official website simultaneous translation



Webpack Chinese manual (community simultaneous translation)



ECMAScript6 Chinese Tutorial




TypeScript Chinese documentation (simultaneous translation on the official website)



Babel Chinese website (next generation JS syntax compiler)



React China (official documentation, too complicated)



React introductory tutorial (recommended, simple and clear)



React Router Chinese Document



Redux Chinese documentation



React Native Chinese website



MobX Chinese documentation (simultaneous translation on the official website)



facebook/emitter (English, no Chinese yet)



Antd (Ant Design of React) official website (Chinese)
https://ant.design/docs/react/introduce-cn


react-intl (internationalization plug-in)




react-intl-universal (react-intl alternative) (English, no Chinese yet)



Testing framework Mocha example tutorial



Mocha.js official document translation - simple, flexible and fun



Karma+Jasmine implements automated unit testing

The above is the detailed content of Front-end new technology Chinese documentation. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
学习Go语言文档中的os.Stdout.Write函数实现标准输出学习Go语言文档中的os.Stdout.Write函数实现标准输出Nov 03, 2023 pm 03:48 PM

学习Go语言文档中的os.Stdout.Write函数实现标准输出在Go语言中,标准输出是通过os.Stdout来实现的。os.Stdout是一个*os.File类型的变量,它代表了标准输出设备。为了将内容输出到标准输出,可以使用os.Stdout.Write函数。本文将介绍如何使用os.Stdout.Write函数实现标准输出,并提供具体的代码示例。os.

Java文档解读:StringBuilder类的substring()方法详细介绍Java文档解读:StringBuilder类的substring()方法详细介绍Nov 03, 2023 pm 04:31 PM

Java文档解读:StringBuilder类的substring()方法详细介绍引言:在Java编程中,字符串的处理是非常常见的操作之一。而Java提供了一系列关于字符串处理的类和方法,其中StringBuilder类是常用于频繁字符串操作的选择。在StringBuilder类中,substring()方法是一个非常有用的方法,用于截取字符串的子串。本文将

PHP如何对接淘宝商品搜索API文档PHP如何对接淘宝商品搜索API文档Jul 01, 2023 pm 10:16 PM

PHP如何对接淘宝商品搜索API文档淘宝是中国最大的电子商务平台之一,拥有庞大的商品库存和用户群体。对于开发者来说,通过对接淘宝的API接口,可以获取商品信息、推广活动以及进行交易等功能,从而实现个性化的商业应用。本文将介绍如何使用PHP语言对接淘宝商品搜索API,帮助开发者快速构建自己的电商应用。第一步:注册成为淘宝开发者在开始之前,需要先注册成为淘宝开发

Java文档解读:HashSet类的contains()方法用法详解Java文档解读:HashSet类的contains()方法用法详解Nov 04, 2023 am 11:43 AM

Java文档解读:HashSet类的contains()方法用法详解HashSet类是Java中常用的集合类之一,它实现了Set接口,并且基于哈希表的数据结构,具有高效的插入、删除和查找操作。其中,contains()方法是HashSet类提供的一个重要方法,用于判断集合中是否包含指定的元素。本文将详细解析HashSet类的contains()方法的用法,并

学习Go语言文档中的os.Stderr.Write函数实现标准错误输出学习Go语言文档中的os.Stderr.Write函数实现标准错误输出Nov 04, 2023 am 09:58 AM

学习Go语言文档中的os.Stderr.Write函数实现标准错误输出,需要具体代码示例在Go语言中,标准错误输出通常用于向用户报告程序中的错误信息。而os.Stderr.Write函数可以实现将错误信息输出到标准错误输出。下面我们将通过具体的代码示例来展示如何使用这个函数。首先,我们需要导入os包来访问标准错误输出。代码如下:packagemaini

ThinkPHP6文档详解:掌握框架的核心ThinkPHP6文档详解:掌握框架的核心Jun 20, 2023 pm 09:14 PM

ThinkPHP6是一款基于PHP语言开发的Web应用框架,该框架一经推出就受到了广泛的欢迎和使用,目前已经成为国内最流行的一款PHP框架之一。在这篇文章中,我们将深入探讨ThinkPHP6框架的核心,帮助读者更好地掌握该框架。一、框架的概述ThinkPHP6是一个企业级的开发框架,它采用MVC(Model-View-Controller)模式进行开发,拥有

2022年五大新技术趋势2022年五大新技术趋势Apr 08, 2023 pm 09:51 PM

如今,有许多新兴的技术趋势为企业服务。作为一个商人,了解新的趋势是非常必要的,因为这对公司来说可以是助一臂之力的。有了这些信息,我们可以轻松地升级公司,让潜在客户可以轻松联系。此外,最新的技术趋势使企业在科技界保持相关性。从3D打印到通过网络安全消除黑客,采用这些技术趋势至关重要,这样业务才能发展并留住客户。以下是2022年的5大新技术趋势,它们可以帮助你的业务显著增长。1、人工智能和机器学习尽管人工智能在几年前就开始流行,但它并没有放缓。它在2022年不断发展,成为顶级技术。例如,今天一些流行

掌握Go语言文档中的time.NewTimer函数实现单次定时器掌握Go语言文档中的time.NewTimer函数实现单次定时器Nov 03, 2023 pm 02:19 PM

掌握Go语言文档中的time.NewTimer函数实现单次定时器,并附上具体代码示例。时间作为我们生活的基准,定时器是编程中非常常用的工具之一。在Go语言中,我们可以使用time包来处理时间相关的操作,其中NewTimer函数可以用于创建一个单次定时器。本文将介绍如何使用NewTimer函数来实现一个简单的单次定时器,并附上具体代码示例。在Go语言中,tim

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment