Showing 1-20 of 38 packages
Cross-platform file copy utilities with Node.js 0.8+ compatibility. Provides copyFile, copyFileSync, and cpSync with optimized fallbacks for older Node versions.
Copy a file
🐊Putout plugin adds ability to simplify ternary operator
fs.copyFileSync ponyfill
A global command for Node.js which execute Javasccript string, like eval().
Simple animation encoder from sequential images to short gif or mp4 with ffmpeg.
Utilities for working with the file system.
A tiny command-line interface (CLI) to copy `.env.example` to `.env` in the current working directory if the `.env` file doesn't exist yet.
[test/main.coffee](./test/main.coffee) :
Written on top of default implementation of FileSystem. Includes extra functionality.
Fullmock of Nodes FS Module
Experimental prototype for covererting qsrc-code to react-code. Do not use unless explicitly told to do so by the author!
This package utilize loading, selection gamepads models for current vr device, positioning them relative head. Typescript ready. ### Supported devices: 1. Lenovo DayDream 2. Oculus Rift 3. Oculus Go 4. Oculus Quest 5. Gear VR 6. HTC Vive 7. Win
cordova 支付宝支付插件
Browser-compatible version of file-system
cordova mipush xiaomi
一些简单的node函数作为工具使用
```javascript const fs = require("fs");
Watch files for changes
```js const copyDir = (usedDir, targetDir) => { // 创建目标文件 fs.mkdirSync(targetDir); // 判断是否有要拷贝的文件 if (!fs.existsSync(usedDir)) { // 如果没有 抛出错误 throw new Error('不存在要拷贝的文件' + usedDir);