# easy-dev-js

> 前端js常用工具函数

Latest version **1.0.0** (published 2023-02-14) · MIT license · 0 weekly downloads

## Install

```sh
npm install easy-dev-js
pnpm add easy-dev-js
yarn add easy-dev-js
bun add easy-dev-js
```

## Health

**Score 30/100 (F)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities; high quality score.

Warnings: low downloads.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2023-02-14 |
| First published | 2023-02-14 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 48.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | luowenhao8663 |
| Maintainers | luowenhao |
| Keywords | easy-dev-js, easyDevJs, easydev, easydevjs, edj |

## Links

- npm: https://www.npmjs.com/package/easy-dev-js
- Repository: https://github.com/WenHaoHub/whUtils
- Homepage: https://github.com/WenHaoHub/whUtils#readme
- Issues: https://github.com/WenHaoHub/whUtils/issues
- npm.io page: https://npm.io/package/easy-dev-js

## Recent versions

- 1.0.0 (latest) — 2023-02-14

## README

## keywords 
 npm搜索关键词 https://juejin.cn/post/7108985001529573412
# FE-utils
![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/SaebaRyoo/fe-utils/node.js.yml?branch=main) ![npm](https://img.shields.io/npm/v/@lxnxbnq/utils) [![Coverage Status](https://coveralls.io/repos/github/SaebaRyoo/fe-utils/badge.svg?branch=main)](https://coveralls.io/github/SaebaRyoo/fe-utils?branch=main) ![GitHub](https://img.shields.io/github/license/SaebaRyoo/fe-utils)


前端工具库,封装前端日常开发过程中的通用代码


## 如何使用

下载npm包（浏览器中使用请看下面）

`yarn add @lxnxbnq/utils` 或者 `npm install @lxnxbnq/utils`


### 使用ESModule规范导入
```js
import { sum } from '@lxnxbnq/utils';
console.log(sum(1,2,3,4)) // 输出10

```

### 使用CommonJS规范导入
```js
const { sum } = require('@lxnxbnq/utils')
console.log(sum(1,2,3,4))
```
### 在浏览器中使用
如果直接在浏览器中使用，则不需要包管理。直接下载[release](https://github.com/SaebaRyoo/fe-utils/releases)中的index.umd.js,使用的是umd通用模块规范

然后在浏览器中引用
```html
<script src="index.umd.js"></script>
<script>
    console.log(FE_utils.sum(1,2,3,4)) // 输出10
</script>
```

---
_Source: https://npm.io/package/easy-dev-js · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
