-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This project is *not* Abandoned/Deprecated [Discussion: successor libraries & development] #231
Comments
I agree. This project is used by many that are starting to learn discord.js and many also start learning javascript with this. Also, for example typings.d.ts is created by tsc and shouldn't be imported from the library itself. |
Yes, there are a few issues with this project's structure. Even if the author were to upgrade this to v14, there would need to be reworkings of major parts of both the library and the project structure. At that point, it's easier to simply build a new library. Personally, I will be doing exactly that over the coming months. It's sad to see software fall into abandonment, especially software which has and will continue to reach a wide audience of amateur, beginner, and inexperienced developers, many of whom will lack the knowledge to resolve the issues they'll encounter. It seems the author has been completely inactive on OSS GitHub since last committing to this project, save for a small express.js script back in april. Ultimately, this is a very common, but very sad tale of OSS software; creation, community, disregard, death. This issue is not closed (it ought to be left open and pinned, imo), but I'll say it's resolved, with the answer being a definite yes. |
Hello, https://github.com/karelkryda/WOKCommands/tree/dev
|
That's great, even though I abandoned wokcommands a long time ago from my bot. That's the point of open source software :D |
@willster277 Have you already started working on a new library? I'm currently trying to rewrite the library, but it's a pretty big step. Wouldn't you like to collaborate on this in some way? |
all 28 of my bots used WOK commands... and for it to be abandoned is alot of work for me to remake my bots |
@karelkryda I haven't started work yet, but I know that the library I build won't have a similar API to WOKCommands. It's definitely good, don't get me wrong, but TypeScript is so much more powerful that most devs are aware of, I want to use and abuse that power as much as possible in order to provide the simplest API with the most powerful type inference. @risetothetop2127 as mentioned above, what I write won't be a v14 update to WOKCommands, rather an entirely new library. It will use a lot of the same ideas - ultimately we're writing wrappers around djs - but it will be a lot more work than changing a dependency and making a couple of tweaks. I've got a lot of research still to do before I'm comfortable getting started, I haven't properly worked with djs since v13 released so I'm a little rusty and mostly unaware of the new API features. |
@willster277 I understand and from what you write I believe that you can create a very useful and high-quality library. I'm currently working on a remake of WOKcommands to support Discord.js v14 and meet the requirements for a modern library. My goal is to offer users a simple migration from WOKcommands so that they can start using the latest version of Discord.js without any problems. More here |
@willster277 This sounds great and it's likely that if I code another discord.js bot I'll use your library (when it's ready). |
@tippf3hlr Thanks, I fixed the link (typo). And thanks for the heads up about the |
I've decided to call my project "accord-bots" for now, "accord" of course being antonymous to "discord". I've also updated the original issue comment with links to DKR Commands and to Accord Bots. |
Update: Accord Bots can now handle slash commands! I haven't fully implemented the type inference, but it should be fine for getting the JS data type and required/optional for simple command options. Example of a "ping" command can be found in the readme |
I really like this approach. You updated your age on your profile, was your birthday recently? Just noticed it... |
@tippf3hlr Could you tell me more about what aspect of Accord Bots you like? Kinda, my birthday was over a month ago... Just kinda forgot to update it. |
I decided to shutdown my unused discord bots, I'm working on one that will have, Moderation, Verification, Support, Fun, Reaction Roles, Giveaways and a few other commands, Good luck with Accord Bots |
No, this is not abandoned. The owner of this repo is very busy. Expect a v14 update within a month or so. |
Hey everyone, This project will be updated by the end of the month. I've been busy working on a course for Discord bot development and one of the main modules is about creating a command handler from scratch. There are only three more videos until that module is complete, at that time WOKCommands will start to be replaced with this new command handler (still under the same name). "WOKCommands v2" will have similar syntax but will be more customizable and user friendly. Here are some of the changes you can expect:
Any feedback on these ideas, or even new ideas, are welcome! The goal is to have a dev build released into the WOK Discord community sometime this month. If you're interested in news about that feel free to join here. |
yay |
I've updated the issue title & initial comment to reflect the recent news. @karelkryda given this news, are you going to continue working on DKRCommands? No worries if not, I'd just like to add a note next to where I've linked your project in the initial comment so anyone viewing this thread in the near future will know. |
Hi @willster277, yes, I would like to continue the development of DKRCommands. The currently released beta version is very close to release. I am currently deciding on the implementation of the cooldown system and its logic. I would be happy if I could publish the library during this week. My goal was to bring as many improvements and fixes to WOKCommands as possible. I plan to support new releases of Discord.js in the future and add any improvements based on user feedback. |
@karelkryda that's awesome, I'll take a look at DKR and see how it is sometime soon, it's good to see alternative approaches. I've updated the original comment here also. |
Looking forward to updated WOK!!! |
Any updates on when the update will be released? I've been following for about a month now. Last I heard, it was supposed to come out end of September. Just checking in cuz I have a bot that i need to update to D.JS v14 soon and would like to use WOKCommands with it :) |
Hi, if you want, u can use my new library DKRCommands:
or if you really want to use WOKcommands, u can install my modification of WOKcommands for djs v14
|
Do you have any documentation for DKRCommands? What notable changes did you make to WOKCommands? Anything particularly special? I'm not particularly advanced in d.js so having documentation helps me a lot haha |
Oh, yeah, ofc I have. Check my repo: https://github.com/karelkryda/DKRCommands |
@karelkryda Thank you so much! Migration to DRKCommands was smooth and I can now continue development of a critical piece of infrastructure! |
I'm checking out your DKRCommands as I also need to move to DJS v14 and may not wait much longer for WOKCommands... I noticed you don't have the "events" (used to be "features" in V1 of WOK) option in your documentation. Is this not available in your version? Anything else worth noting that is NOT in the documentation? Nice work on explaining the move from WOK to DKR. (-: |
@Fooweb Do you mean this events? In this section of migration guide, I listed all properties, that are not available in DKRCommands. So if we are both talking about the same thing, it is true that this functionality is easy to implement without the need for a special function in DKRCommands. client.on("xyz", (x, y, z) => {
// something
}); I came to the conclusion that implementing this functionality directly into DKRCommands is not necessary.
I hope you look at my steps positively. I will appreciate any feedback. Have a nice day. |
I wonder if they meant how "Features" in WOKCommands is the name WOK used for event listeners. For instance,
This would go into a separate file in the "Features" directory. Called by |
Looks like Alex has already started updating the Docs because it no longer reflects the current version of WOKCommands |
@karelkryda - Yes, we're on the same page! I missed that part, I guess I didn't read far enough. Definitely like the idea and direction you are heading as that will provide flexibility with plugins! Looking forward to v1 and the dashboard! |
@DJ45X - Yes this is what I meant. Looks like WOK V1 used features and WOK v2 will use events. I do like how this is set up with the different files for each event. |
@AlexzanderFlores I think it would be awesome if WOKCommands offered the possibility to manage Context menu commands as easy as it does with Slash commands. I'm really glad to know this project is not abandoned btw, and I'll be looking forward to the next update! |
I am not using any command handler anymore, but what happened to the v14 update? I understand that you might not have time to update this, and that's fine because alternatives exist, but then maybe don't announce an update? (correct me if I'm wrong) |
I've completely switched to using Discord JDA in java. No command handler needed. JDA seems to have so much more flexibility that discord.js. For anyone that wants a fresh look on things, check out discord JDA. It was nice having gotten my start in discord.js for discord bots; java is the next endeavor and I highly encourage others to check it out :) |
Edit 2:
Alexzander of Work Off Keys (the owner of this repo) has declared that they are working on an update for this library to DJSv14. See this comment here.
What this means for the alternatives listed below is up to the authors of those alternatives. Their respective repositories may have more info. I'll add any info below if they're definitely being continued or not.
Edit:
This library is abandoned.See my thoughts on this below.Read further on from there for discussion and information on some developers who are working on
successorsalternatives to WOKCommands.SuccessorsAlternatives, in order of when they were shared here;DKRCommands by @karelkryda (being continued? Yes)
accord-bots by @willster277 (me) (being continued? Yes)
Discord.js has recently released v14, which as major versions do introduces a lot of breaking changes.
More importantly, the new version keeps up to date with the actual API, many things available in v13 will soon not exist as ways to interact with Discord.
The last commit in this repo was over 10 months ago, and as far as I can tell the only subsequent interaction with this project from the author was on 18 Feb in #208.
@AlexzanderFlores, do you intend to upgrade this project to v14 soon?
Yes, they do
If not, I suggest that the package be marked as deprecated on NPM, and notices put up on your tutorial series reflecting this. It will save a lot of confusion, a lot of hassle, and a whole lot of issues here relating to v13 no longer being functional.The text was updated successfully, but these errors were encountered: