Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/allouis/fs-object
https://github.com/allouis/fs-object
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/allouis/fs-object
- Owner: allouis
- License: mit
- Created: 2014-05-07T21:10:39.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-07-24T09:26:22.000Z (over 10 years ago)
- Last Synced: 2024-08-09T05:45:59.696Z (3 months ago)
- Language: JavaScript
- Size: 242 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fs-object
## Example
```javascript
var fsObj = require('fs-object');fsObj(process.cwd(), function (err, result) {
cssFiles = result.public.css
cssFiles['theme.css'] // content of cwd/public/css/theme.css
});```