5 Commits

Author SHA1 Message Date
Jacob Nguyen
8b8191b7da moveorder 2025-01-24 17:02:51 -06:00
Jacob Nguyen
cc7d02ff21 update order 2025-01-23 21:29:00 -06:00
Jacob Nguyen
ac2561845f Update goal.mdx 2025-01-23 21:27:54 -06:00
Jacob Nguyen
b793b8ca77 Create goal.mdx 2025-01-23 21:09:51 -06:00
Jacob Nguyen
c1773b8b40 Merge pull request #78 from sern-handler/jacoobes-patch-3
Some checks failed
Deploy to GitHub Pages / Deploy to GitHub Pages (push) Has been cancelled
Update error-handling.mdx
2025-01-18 13:38:00 -06:00
4 changed files with 30 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
title: Conclusion
description: Thank you for reading the sern guide
sidebar:
order: 10
order: 11
---
If you reached this far, thank you for reading!

View File

@@ -2,7 +2,7 @@
title: Config
description: Configure your bot
sidebar:
order: 2
order: 3
---
Your app needs a way to store constants and required variables for the framework to work.

View File

@@ -0,0 +1,27 @@
---
title: Goal
description: sern's goal is to make bot development easier and more efficient
sidebar:
order: 10
---
This reference will have JavaScript but many snippets are easily transferrable to Typescript.
# why?
Theres a lack of sane ways to build Discord bots.
Some advocate to *build your own abstractions*, use clunky archaic codebases that are rarely maintained, or install frameworks that don't satisfy your needs.
**Keep it simple!**
# sern is built for these things in mind
- **Modularity**: sern is built with modularity in mind. You can swap pieces and parts easily.
- **Familiarity**: Commands and structures are similar to classic v12 handlers and the official Discord.js command handler guide, while packing many features!
- **Concise**: Too much code is a liability. With sern, write less for more. 🤯
# Our community
As of 01/23/2025, our [discord](https://sern.dev/discord) is considered small, but it is no excuse for helping those who want to build bots with us. Feel free to join us!

View File

@@ -2,7 +2,7 @@
title: Tasks
description: Schedule and execute functions at certain times
sidebar:
order: 2
order: 3
---
Your app may need to execute tasks in the future on intervals or over a long time.