Skip to content
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

Is this abandoned? #803

Closed
Yaro77 opened this issue Dec 4, 2024 · 2 comments
Closed

Is this abandoned? #803

Yaro77 opened this issue Dec 4, 2024 · 2 comments

Comments

@Yaro77
Copy link

Yaro77 commented Dec 4, 2024

I got tired of my Vue projects and I'm thinking of building more classic SSR apps (anyway Asp.net core backend is mandatory in the company I work for).
So I've discovered for myself Stimulus recently and started to play with it.

<button data-controller="counter" data-action="counter#increment">Count is 0</div>

with controller

export default class extends Controller {
  static values = {
    count: {
      type: Number,
    }
  };

  increment() {
    this.element.innerHTML = `Count is ${this.countValue}`;
  }
};

and it works.
Wait, I didn't set the data-counter-count-value or default in the static values count definitions.
Then I checked hasCountValue and it returns true. So I guessed I found a bug.
I checked the Issues and found one #772. Then I checked the repo, there's no tests (Edit: I was wrong here). And a lot of unmerged pull-requests.

My question: Is this project abandoned?

@ghisleouf
Copy link

Any answer on this question?
Stimulus is a really good alternative.

Hope the answer is No ;)

@dhh
Copy link
Member

dhh commented Feb 2, 2025

Absolutely not. But not every package of software needs a constant churn of releases to be alive. Stimulus is used by every new Rails app by default, and it powers Basecamp, HEY, and a bunch of other web apps.

@dhh dhh closed this as completed Feb 2, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

3 participants