source: frontend/node_modules/fs-extra/README.md

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 9.4 KB
RevLine 
[9af201e]1Node.js: fs-extra
2=================
3
4`fs-extra` adds file system methods that aren't included in the native `fs` module and adds promise support to the `fs` methods. It also uses [`graceful-fs`](https://github.com/isaacs/node-graceful-fs) to prevent `EMFILE` errors. It should be a drop in replacement for `fs`.
5
6[![npm Package](https://img.shields.io/npm/v/fs-extra.svg)](https://www.npmjs.org/package/fs-extra)
7[![License](https://img.shields.io/npm/l/fs-extra.svg)](https://github.com/jprichardson/node-fs-extra/blob/master/LICENSE)
8[![build status](https://img.shields.io/github/workflow/status/jprichardson/node-fs-extra/Node.js%20CI/master)](https://github.com/jprichardson/node-fs-extra/actions/workflows/ci.yml?query=branch%3Amaster)
9[![downloads per month](http://img.shields.io/npm/dm/fs-extra.svg)](https://www.npmjs.org/package/fs-extra)
10[![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)
11
12Why?
13----
14
15I got tired of including `mkdirp`, `rimraf`, and `ncp` in most of my projects.
16
17
18
19
20Installation
21------------
22
23 npm install fs-extra
24
25
26
27Usage
28-----
29
30`fs-extra` is a drop in replacement for native `fs`. All methods in `fs` are attached to `fs-extra`. All `fs` methods return promises if the callback isn't passed.
31
32You don't ever need to include the original `fs` module again:
33
34```js
35const fs = require('fs') // this is no longer necessary
36```
37
38you can now do this:
39
40```js
41const fs = require('fs-extra')
42```
43
44or if you prefer to make it clear that you're using `fs-extra` and not `fs`, you may want
45to name your `fs` variable `fse` like so:
46
47```js
48const fse = require('fs-extra')
49```
50
51you can also keep both, but it's redundant:
52
53```js
54const fs = require('fs')
55const fse = require('fs-extra')
56```
57
58Sync vs Async vs Async/Await
59-------------
60Most methods are async by default. All async methods will return a promise if the callback isn't passed.
61
62Sync methods on the other hand will throw if an error occurs.
63
64Also Async/Await will throw an error if one occurs.
65
66Example:
67
68```js
69const fs = require('fs-extra')
70
71// Async with promises:
72fs.copy('/tmp/myfile', '/tmp/mynewfile')
73 .then(() => console.log('success!'))
74 .catch(err => console.error(err))
75
76// Async with callbacks:
77fs.copy('/tmp/myfile', '/tmp/mynewfile', err => {
78 if (err) return console.error(err)
79 console.log('success!')
80})
81
82// Sync:
83try {
84 fs.copySync('/tmp/myfile', '/tmp/mynewfile')
85 console.log('success!')
86} catch (err) {
87 console.error(err)
88}
89
90// Async/Await:
91async function copyFiles () {
92 try {
93 await fs.copy('/tmp/myfile', '/tmp/mynewfile')
94 console.log('success!')
95 } catch (err) {
96 console.error(err)
97 }
98}
99
100copyFiles()
101```
102
103
104Methods
105-------
106
107### Async
108
109- [copy](docs/copy.md)
110- [emptyDir](docs/emptyDir.md)
111- [ensureFile](docs/ensureFile.md)
112- [ensureDir](docs/ensureDir.md)
113- [ensureLink](docs/ensureLink.md)
114- [ensureSymlink](docs/ensureSymlink.md)
115- [mkdirp](docs/ensureDir.md)
116- [mkdirs](docs/ensureDir.md)
117- [move](docs/move.md)
118- [outputFile](docs/outputFile.md)
119- [outputJson](docs/outputJson.md)
120- [pathExists](docs/pathExists.md)
121- [readJson](docs/readJson.md)
122- [remove](docs/remove.md)
123- [writeJson](docs/writeJson.md)
124
125### Sync
126
127- [copySync](docs/copy-sync.md)
128- [emptyDirSync](docs/emptyDir-sync.md)
129- [ensureFileSync](docs/ensureFile-sync.md)
130- [ensureDirSync](docs/ensureDir-sync.md)
131- [ensureLinkSync](docs/ensureLink-sync.md)
132- [ensureSymlinkSync](docs/ensureSymlink-sync.md)
133- [mkdirpSync](docs/ensureDir-sync.md)
134- [mkdirsSync](docs/ensureDir-sync.md)
135- [moveSync](docs/move-sync.md)
136- [outputFileSync](docs/outputFile-sync.md)
137- [outputJsonSync](docs/outputJson-sync.md)
138- [pathExistsSync](docs/pathExists-sync.md)
139- [readJsonSync](docs/readJson-sync.md)
140- [removeSync](docs/remove-sync.md)
141- [writeJsonSync](docs/writeJson-sync.md)
142
143
144**NOTE:** You can still use the native Node.js methods. They are promisified and copied over to `fs-extra`. See [notes on `fs.read()`, `fs.write()`, & `fs.writev()`](docs/fs-read-write-writev.md)
145
146### What happened to `walk()` and `walkSync()`?
147
148They were removed from `fs-extra` in v2.0.0. If you need the functionality, `walk` and `walkSync` are available as separate packages, [`klaw`](https://github.com/jprichardson/node-klaw) and [`klaw-sync`](https://github.com/manidlou/node-klaw-sync).
149
150
151Third Party
152-----------
153
154### CLI
155
156[fse-cli](https://www.npmjs.com/package/@atao60/fse-cli) allows you to run `fs-extra` from a console or from [npm](https://www.npmjs.com) scripts.
157
158### TypeScript
159
160If you like TypeScript, you can use `fs-extra` with it: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/fs-extra
161
162
163### File / Directory Watching
164
165If you want to watch for changes to files or directories, then you should use [chokidar](https://github.com/paulmillr/chokidar).
166
167### Obtain Filesystem (Devices, Partitions) Information
168
169[fs-filesystem](https://github.com/arthurintelligence/node-fs-filesystem) allows you to read the state of the filesystem of the host on which it is run. It returns information about both the devices and the partitions (volumes) of the system.
170
171### Misc.
172
173- [fs-extra-debug](https://github.com/jdxcode/fs-extra-debug) - Send your fs-extra calls to [debug](https://npmjs.org/package/debug).
174- [mfs](https://github.com/cadorn/mfs) - Monitor your fs-extra calls.
175
176
177
178Hacking on fs-extra
179-------------------
180
181Wanna hack on `fs-extra`? Great! Your help is needed! [fs-extra is one of the most depended upon Node.js packages](http://nodei.co/npm/fs-extra.png?downloads=true&downloadRank=true&stars=true). This project
182uses [JavaScript Standard Style](https://github.com/feross/standard) - if the name or style choices bother you,
183you're gonna have to get over it :) If `standard` is good enough for `npm`, it's good enough for `fs-extra`.
184
185[![js-standard-style](https://cdn.rawgit.com/feross/standard/master/badge.svg)](https://github.com/feross/standard)
186
187What's needed?
188- First, take a look at existing issues. Those are probably going to be where the priority lies.
189- More tests for edge cases. Specifically on different platforms. There can never be enough tests.
190- Improve test coverage.
191
192Note: If you make any big changes, **you should definitely file an issue for discussion first.**
193
194### Running the Test Suite
195
196fs-extra contains hundreds of tests.
197
198- `npm run lint`: runs the linter ([standard](http://standardjs.com/))
199- `npm run unit`: runs the unit tests
200- `npm test`: runs both the linter and the tests
201
202
203### Windows
204
205If you run the tests on the Windows and receive a lot of symbolic link `EPERM` permission errors, it's
206because on Windows you need elevated privilege to create symbolic links. You can add this to your Windows's
207account by following the instructions here: http://superuser.com/questions/104845/permission-to-make-symbolic-links-in-windows-7
208However, I didn't have much luck doing this.
209
210Since I develop on Mac OS X, I use VMWare Fusion for Windows testing. I create a shared folder that I map to a drive on Windows.
211I open the `Node.js command prompt` and run as `Administrator`. I then map the network drive running the following command:
212
213 net use z: "\\vmware-host\Shared Folders"
214
215I can then navigate to my `fs-extra` directory and run the tests.
216
217
218Naming
219------
220
221I put a lot of thought into the naming of these functions. Inspired by @coolaj86's request. So he deserves much of the credit for raising the issue. See discussion(s) here:
222
223* https://github.com/jprichardson/node-fs-extra/issues/2
224* https://github.com/flatiron/utile/issues/11
225* https://github.com/ryanmcgrath/wrench-js/issues/29
226* https://github.com/substack/node-mkdirp/issues/17
227
228First, I believe that in as many cases as possible, the [Node.js naming schemes](http://nodejs.org/api/fs.html) should be chosen. However, there are problems with the Node.js own naming schemes.
229
230For example, `fs.readFile()` and `fs.readdir()`: the **F** is capitalized in *File* and the **d** is not capitalized in *dir*. Perhaps a bit pedantic, but they should still be consistent. Also, Node.js has chosen a lot of POSIX naming schemes, which I believe is great. See: `fs.mkdir()`, `fs.rmdir()`, `fs.chown()`, etc.
231
232We have a dilemma though. How do you consistently name methods that perform the following POSIX commands: `cp`, `cp -r`, `mkdir -p`, and `rm -rf`?
233
234My perspective: when in doubt, err on the side of simplicity. A directory is just a hierarchical grouping of directories and files. Consider that for a moment. So when you want to copy it or remove it, in most cases you'll want to copy or remove all of its contents. When you want to create a directory, if the directory that it's suppose to be contained in does not exist, then in most cases you'll want to create that too.
235
236So, if you want to remove a file or a directory regardless of whether it has contents, just call `fs.remove(path)`. If you want to copy a file or a directory whether it has contents, just call `fs.copy(source, destination)`. If you want to create a directory regardless of whether its parent directories exist, just call `fs.mkdirs(path)` or `fs.mkdirp(path)`.
237
238
239Credit
240------
241
242`fs-extra` wouldn't be possible without using the modules from the following authors:
243
244- [Isaac Shlueter](https://github.com/isaacs)
245- [Charlie McConnel](https://github.com/avianflu)
246- [James Halliday](https://github.com/substack)
247- [Andrew Kelley](https://github.com/andrewrk)
248
249
250
251
252License
253-------
254
255Licensed under MIT
256
257Copyright (c) 2011-2017 [JP Richardson](https://github.com/jprichardson)
258
259[1]: http://nodejs.org/docs/latest/api/fs.html
260
261
262[jsonfile]: https://github.com/jprichardson/node-jsonfile
Note: See TracBrowser for help on using the repository browser.