Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions src/features/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,40 @@ const commandsList: Command[] = [
});
},
},
{
words: [`!contribution`],
help: `informs user's of contributing to React codebase`,
category: "Communication",
handleMessage: (msg) => {
msg.reply({
embeds: [
{
title: "Contributing to React",
type: EmbedType.Rich,
description: `
React is a very large and complex project. It has a steep learning curve, involves a lot of internal tooling and architecture, and often requires deep context to make meaningful contributions.
If you’re looking to gain experience in open source, we recommend starting with projects that are more beginner-friendly but still widely used and respected in the React ecosystem. Great alternatives include:
`,
fields: [
{
name: "Open Source Alternatives",
value: `
- [TanStack](https://github.com/tanstack)
- [Preact](https://github.com/preactjs/preact)
- [Remix](https://github.com/remix-run/remix)
- [SolidJS](https://github.com/solidjs/solid)
- [React Hook Form](https://github.com/react-hook-form/react-hook-form)
- [freeCodeCamp](https://github.com/freeCodeCamp/freeCodeCamp)
- [Daily.dev](https://github.com/dailydotdev/daily)
`,
inline: true,
},
],
},
],
});
},
},
{
words: [`!crosspost`],
help: `provides a no cross-post message`,
Expand Down