0.5.0 • Published 2 years ago

fakefilesystem v0.5.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

FakeFileSystem.js 💾

library to simulate a simple file system in javascript 💾

JsDelivr

<script src="https://cdn.jsdelivr.net/gh/SkwalExe/FakeFileSystem.js@v0.5.0/dist/ffs.min.js"></script>

Usage 📝

The module can be used in Node.js or in the browser.

npm install --save fakefilesystem
const FFS = require('fakefilesystem');

var myFFS = new FFS();

Wiki 📖

To learn more about how to use the module, check out the wiki. It contains very much a lot of informations

final

If you have any problem, don't hesitate to open an issue

Contributing

  1. Start by forking this repository

  2. Then clone your fork to your local machine.

    git clone https://github.com/your-username/FakeFileSystem.js.git
  3. Install dev dependencies

    npm install --save-dev
  4. Create a new branch

    git checkout -b super-cool-feature
  5. Then make your changes

  6. Run tests

    npm test
  7. Update the changelog and version number if needed (using Semantic Versioning)

    # bug fix
    npm version patch --no-git-tag-version
    
    # add a new feature 
    npm version minor --no-git-tag-version
    
    # changes that break backwards compatibility
    npm version major --no-git-tag-version
  8. List and correct linting errors

    npm run lint
  9. Update the minified version of the library

    npm run build
  1. Once you're done, commit your changes and push them to the remote repository.

    git add --all
    git commit -m "Add super-cool-feature"
    git push origin super-cool-feature
  2. Then, open a pull request on GitHub from your fork.

    1. Go to this link
    2. Click compare across forks
    3. On the right, on head repository select your fork
    4. And on compare select the branch you just created
    5. Click on Create Pull Request and submit your pull request

0.5.0

2 years ago

0.4.3

2 years ago

0.4.2

2 years ago

0.4.1

2 years ago

0.4.0

2 years ago

0.3.1

2 years ago

0.3.0

2 years ago

0.2.0

2 years ago

0.1.0

2 years ago