npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@darcytech/babel-preset-darcytech

v3.6.2

Published

专为 react app 提供的 Babel preset

Downloads

11

Readme

@darcytech/babel-preset-darcytech

简介

这个 package 是专为 react 应用设计的 babel 预设。

安装

npm install --save-dev @darcytech/babel-preset-darcytech

用法

配置选项

| 选项 | 含义 | 默认值 | | ------------- | -------------------------------------------------------------------------------------------------- | ------- | | useTypeScript | 是否使用 TypeScript | true | | runtime | 编译 JSX 使用哪个运行时, React17 推荐使用 automatic (babel7.9.0 开始支持), 旧版 react 使用 classic | classic |

默认使用

// .babelrc
{
  "presets": ["@darcytech/darcytech"]
}

不使用 Typescript

// .babelrc
{
  "presets": [["@darcytech/darcytech", { "useTypeScript": false }]]
}

最佳实践

使用.browserslistrc 文件指定目标环境

# Browsers that we support

defaults
not IE 11

为不同运行环境,指定环境变量

开发环境:

process.env.BABEL_ENV = "development";
process.env.NODE_ENV = "development";

生产环境:

process.env.BABEL_ENV = "production";
process.env.NODE_ENV = "production";

有助于减少线上包的大小。

特点

  • 支持按需引入 polyfill
  • 不污染全局环境
  • 支持 React
  • 默认支持 TypeScript
  • 支持动态导入
  • 支持装饰器
  • 支持大部分 Javascript 标准

支持的语言特性

支持最新的 JavaScript 标准。除了 ES6 语法功能外,它还支持:

  • ES2021(例如:Promise.any)
  • ES2020(例如:Promise.allSettled、可选链操作符)
  • ES2019(例如:Array.prototype.flat)
  • ES2018(例如:Rest 参数和扩展运算符)
  • ES2017(例如:Object.entries)
  • ES2016(例如:Array.prototype.includes)
  • ES2015
  • 支持 Class 的私有字段、私有方法、静态字段

注意

  • 不支持 Proxy, 不支持 BigInt
  • 不提供 polyfill , 需要自己安装 core-js, 并在项目入口文件引入