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

json-fs-converter

v1.5.0

Published

This module allows to convert json structures in file system, by taking resources from different resources

Downloads

48

Readme

json-fs-converter

This module allows to convert json structures in file system, by taking resources from different resources

Getting Started

Installing

npm install --save json-fs-converter 

Then you can use the module by importing the library.

Running the tests

Unit Tests:

npm test

Integration test:

npm run integration  

Usage

To use the library:

var jsonConverter = require('json-fs-converter')
const path = require('path');
const fs = require('fs');
const fakeTmp = '/fakeTmp';
const mock = require('mock-fs')
const singleFile = '{"root" : "/fakeTmp", "name" : "single-test", "structure" : [{"type": "http", "name" : "test.txt", "url": "https://raw.githubusercontent.com/giper45/DockerSecurityPlayground/master/Readme.md"}]}'

mock({
  '/fakeTmp' : {}
})

const mm = jsonConverter(singleFile);
mm.run((err) => {
  const filename = path.join(fakeTmp, 'single-test', "test.txt");
  let exists = fs.existsSync(filename);
  console.log("Exists? ")
  console.log(exists)
  console.log("File content:");
  const fileContent = fs.readFileSync(filename);
  console.log(fileContent)
  console.log(fileContent.toString())
  mock.restore();
})

This code will create the following file structure:

/fakeTmp/single-test (directory)
/fakeTmp/single-test/test.txt (file)

The library recursively create directories and files. The module accepts a single object containing:

  • root: the root directory where first directory will be saved
  • name: the name of the directory that will be created; in this directory files will be saved
  • List of files: an array containing elements that depends on the type of driver

The library detect the type of driver to use depending on the elements inside the structure array. Available drivers:

  • httpDriver : Download files from webserver; the structure of an element is :
{
  "type": "http",
  "name" : <name_to_save>, // the name of the new created file
  "url": <url_to_download> // the url where the file will be downloaded
}
  • fsDriver : Download files from filesystem; the structure of an element is :
{
  "type": "fs", //Filesystem driver
  "name" : <name_to_save>, // the name of the new created file
  "filepath": <filepath> // the path where the file will be taken 
}
  • contentDriver : Write files by content; the structure of an element is :
{
  "type": "content", //Content driver
  "name" : <name_to_save>, // the name of the new created file
  "content": <content> // the content that will be saved in fs
}

Contributing

1. Fork it!
2. Create your feature branch: `git checkout -b my-new-feature`
3. Commit your changes: `git commit -am 'Add some feature'`  
4. Push to the branch: `git push origin my-new-feature`
5. Submit a pull request, we'll check 

Authors

  • Gaetano Perrone - Initial work - giper45

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE.md file for details