TS.ED community

Become contributors

Contributing

Introduction

First, thank you for considering contributing to Ts.ED! It's people like you that make the open source community such a great community! 😊

We welcome any type of contribution, not only code. You can help with

  • QA: file bug reports, the more details you can give the better (e.g. screenshots with the console open)
  • Marketing: writing blog posts, howto's, printing stickers, ...
  • Community: presenting the project at meetups, organizing a dedicated meetup for the local community, ...
  • Code: take a look at the open issues. Even if you can't write code, commenting on them, showing that you care about a given issue matters. It helps us triage them.
  • Money: we welcome financial contributions in full transparency on our open collective.

Your First Contribution

Working on your first Pull Request? You can learn how from this free series, How to Contribute to an Open Source Project on GitHub.

Submitting code

Any code change should be submitted as a pull request. The description should explain what the code does and give steps to execute it. The pull request should also contain tests. Code review process

The bigger the pull request, the longer it will take to review and merge. Try to break down large pull requests in smaller chunks that are easier to review and merge. It is also always helpful to have some context for your pull request. What was the purpose? Why does it matter to you?

Financial contributions

We also welcome financial contributions in full transparency on our open collective. Anyone can file an expense. If the expense makes sense for the development of the community, it will be "merged" in the ledger of our open collective by the core contributors and the person who filed the expense will be reimbursed.

Questions

If you have any questions, create an issue (protip: do a quick search first to see if someone else didn't ask the same question before!). You can also reach us at hello@tsed.opencollective.com.

How to work on Ts.ED

Setup

Clone your fork of the repository

$ git clone https://github.com/YOUR_USERNAME/ts-express-decorators.git
1

Install npm dependencies with yarn (not with NPM!):

yarn
1

After installing dependencies, yarn run the postinstall hook and mounted all packages with npm link (e.g. yarn run repo:bootstrap).

Compile TypeScript:

tsc
# or
yarn tsc
# or
npm run tsc
1
2
3
4
5

Build project:

Test

yarn test
# or
npm run test
1
2
3

Gflow

Gflow is a command line tool to help developer with the Git Flow process used in Ts.ED.

Gflow help you to create a branch from production, rebase and run the test before pushing your branch on your remote repository.

npm install -g gflow
1

Start a feature branch

gflow new feat name_of_feat
1

Commit & Push a feature

This command rebase your branch feature from the production branch, run the test and push your branch.

git commit -m "feat(domain): Your message"
gflow push
1
2

To write your commit message see convention page

When your feature is ready to review, you can open a PR on Ts.ED github.

Finish a feature

After the PR has been accepted, the feature will be automatically merge on the master branch, but your feature isn't merge with the production branch.

To publish your feature on the production branch you need to run a this command:

gflow finish
1

Note: This action works only on the Ts.ED repository (not on your fork).

Write documentation

Ts.ED use docsify to convert markdown to HTML. In addition, all documentation in your code will be used to generate the Api documentation. To preview your comments on a class you can run this command:

npm run doc:serve
1

Guidelines

  • Ts.ED follow the git flow to generate a release note. To write your commit message see convention page
  • Please try to combine multiple commits before pushing
  • Please use TDD when fixing bugs. This means that you should write a unit test that fails because it reproduces the issue, then fix the issue and finally run the test to ensure that the issue has been resolved. This helps us prevent fixed bugs from happening again in the future
  • Please keep the test coverage at 100%. Write additional unit tests if necessary
  • Please create an issue before sending a PR if it is going to change the public interface of Ts.ED or includes significant architecture changes,
  • Feel free to ask for help from other members of the Ts.ED team

Our
Contributors

    Our
    Backers

    Thank you to all our backers! 🙏

      Our
      sponsors

      Support this project by becoming a sponsor. Your logo will show up here with a link to your website.