0.1.0 ā€¢ Published 2 years ago

memz v0.1.0

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

Memz.js

šŸ‘¾ Library to simulate memz-like virus in a browser

npm.io

jsDelivr

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

NPM module

Install the npm module

npm install memz

And import it in your project

const Memz = require('memz');

āš ļø You will need to bundle the package with your application (for example with browserify) because this library only works in the browser

browserify index.js -o bundle.js

Setting up

You can import the library into you website with JsDelivr or, you can use the npm module and import it in your project.

You also need to import the css file to your website

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/windowsmessagebox@0.4.1/dist/wmsgbox.min.css">

Usage šŸ“

This library provides 10 functions:

Memz.all()

The Memz.all() function executes all the functions below at the same time.

Memz.original()

Imitates the original behavior of Memz.

Memz.errorSounds()

This function plays windows error sounds randomly.

Memz.music()

This function plays the Issou night club music in loop.

Memz.messageBoxes()

This function creates message boxes with random messages at a random position on the page.

npm.io

Memz.errorIcon()

This function puts little error icons next to the mouse cursor every ~100 milliseconds.

npm.io

Memz.invertColors()

This function inverts the color of a random element on the page every 100 milliseconds.

npm.io

Memz.rotateElements()

This function rotates a random element on the page every 100 milliseconds.

npm.io

Memz.zoomElements()

This function zooms a random element on the page every 100 milliseconds.

npm.io

Memz.blockAllInputs()

This function blocks all inputs on the page.

Memz.changeCursor()

This function changes the cursor to a random one every 15 milliseconds.

npm.io

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/memz.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. Update the changelog and version number if needed (using Semantic Versioning) also, update the version number in the JsDelivr links (js and css)

    # 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
  7. List and correct linting errors

    npm run lint
  8. Update the minified/browser version of the library

    npm run build
  9. 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
  10. Then, open a pull request on GitHub from your fork.

  11. Go to this link
  12. Click compare across forks
  13. On the right, on head repository select your fork
  14. And on compare select the branch you just created
  15. Click on Create Pull Request and submit your pull request