![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Abstraction Layer for File Management.
Drop in replacement for fs.
$ npm install --save smart-fs
Extends and returns filepath with the file extension as appropriate. Returns null
if no good match was found.
A few notes:
null
when multiple possible extensions are foundTo exclude certain extensions from being matched provide them in the exclude
option.
Iteratively walk dirpath and return relative paths of all files contained.
Will only return entries where fs.lstatSync(...).isFile()
evaluates to true (this excludes symlinks).
Delete file and all empty parent directories.
Core logic of smartRead
but takes content and refPath.
Read and parse file based on file extension.
The following extensions are handled in order:
.json
: Loads file using JSON.parse..xml
: Loads file using xml-js..yml
and .yaml
: Loads file using yaml-boost..js
: Loads file using import. Result is a promise!.*
: Treats file as text file and loads as array of lines.Note that the required cache is not automatically invalidated when loading cached .js
files.
To ignore file extension and force treat the file as a certain type, you can pass the option treatAs
as e.g. json
.
To simply load yml files without resolving them pass resolve
as false
Serialize and write content to file based on file extension.
The file and all necessary folders are created if not present.
The file is only actually written if the content has changed. Returns true if the file was written, false otherwise.
The following extension are handled in order:
.json
: Serialize uses JSON.stringify..xml
: Serialize using xml-js..yml
and .yaml
: Serialize uses yaml-boost..*
: Expects content as array and serializes by joining array using new line character.To ignore file extension and force treat the file as a certain type, you can pass the option treatAs
as e.g. json
.
The mergeStrategy
option can be used to customize how the new content is merged if the target file already exists.
By default the file is simply overwritten.
When create
is set to false
no action is taken if the file does not already exist.
When pretty
is set to true
, the output is formatted more compact.
When keepOrder
is set to true
and a file is overwritten,
the new content is ordered according to the existing content (e.g. for json
and yml
)
To resolve
the original file before overwrite merging pass the option as true
.
Do not use this library for loading if you don't trust the source of the files you are loading!
FAQs
Abstraction Layer for File Management.
The npm package smart-fs receives a total of 91 weekly downloads. As such, smart-fs popularity was classified as not popular.
We found that smart-fs demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.