Skip to content

Latest commit

 

History

History
57 lines (38 loc) · 1.49 KB

Contribute.md

File metadata and controls

57 lines (38 loc) · 1.49 KB

Contributing to Mithril.js by Examples

Mithril.js by Examples was created for new users to learn Mithril.js by reviewing real code snippets and by asking questions. This repository is a collection of code samples containing working explanations.

We welcome contributions to our GitHub repository. If you have a new code example, that is not listed here, let us know.

Issues

Feel free to submit issues and enhancement requests.

Contributing

  1. Fork the repository
  2. Clone the repository to your machine.
    Git clone <url>
  1. The Examples folder contains all the code snippets. You can contribute your work to this repository. Here are some examples dom-elements, hello-world.

  2. Create a branch

    git checkout -b projectname-username
  1. After making the required changes, commit.
    git add .
    git commit -m "Added <projectname> by <your_username>
  1. Push the changes.
    git push origin <projectname-username>
  1. Compare & Submit your Pull Request.

Wait till your changes get merged.

NOTE:

  • Please work on issues alloted to you.
  • Push only one change per commit.
  • Follow community guidelines.