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

@file-conver/convers

v1.6.7

Published

convers 提供了一些常用的 file-conver 转换器

Downloads

138

Readme

目录

1. 背景

当需要对旧项目进行改造,改造过程中需要很多重复的操作,比如:
将下面全局的模块使用方式:

new Cesium.Cartesian3();

改成成员导入方式:

import {Cartesian3} from "cesium"
new Cartesian3();

借助正则,这些都可以通过代码来操作。但对于不熟悉 Node 的同学,写一个批量处理这些文件的工具还是比较耗时的,优其只是偶尔用一下的时候。

所以,为了方便没有 Node 经验的同学能够快速实现自己的处理脚本,所以本工具就诞生了。

2. 简介

file-conver 用于批量处理文件,可自定义处理逻辑。它提供了遍历文件、读取文件 和 写入文件 的能力,提供了链式的自定义处理器逻辑,可以让用户方便的自定义 和 拆分 处理逻辑。并且支持一个文件转换成多个文件的机制。

具有以下特性:

  • 批量处理文件
  • 链式的自定义处理逻辑,方便自定义 和 拆分处理逻辑
  • 带有命令行工具,并且支持配置文件
  • 支持一个文件转换成多个文件的机制
  • 支持异步转换
  • 支持 JSAPI 调用

详情请看:

如果您在使用的过程中遇到了问题,或者有好的建议和想法,您都可以通过以下方式联系我,期待与您的交流:

3. 安装方式

通过 npm (或 yarn、pnpm 等包管理器)安装

npm install @file-conver/convers

4. 教程

详情跳转至教程

5. API接口文档

详情跳转至API接口文档


有您的支持,我会在开源的道路上,越走越远

赞赏码