Skip to main content
Need help with bun-scikit? We’re here to support you! Choose the option below that best fits your needs.

Getting Help

Questions

For usage questions, open a GitHub Discussion or an issue with the question label.

Documentation

Check our comprehensive documentation for guides, API references, and examples.

Bug Reports

Found a bug? Report it using our bug report issue template.

Feature Requests

Have an idea? Share it with us through GitHub Issues.

Reporting Bugs

1

Search Existing Issues

Before creating a new issue, search existing issues to see if your bug has already been reported.
2

Use the Bug Report Template

Use the bug report issue template to ensure you provide all necessary information.
3

Include Required Information

Make sure to include:
  • Minimal reproduction code: A complete, minimal example that demonstrates the issue
  • Input data shape/sample: Description or sample of the data being used
  • Bun version: Output of bun --version
  • bun-scikit version: Version number from package.json or bun pm ls
  • Expected behavior: What you expected to happen
  • Actual behavior: What actually happened
  • Error messages: Full error messages and stack traces if applicable

Example Bug Report

import { LinearRegression } from 'bun-scikit';

const X = [[1], [2], [3]];
const y = [2, 4, 6];

const model = new LinearRegression({ solver: 'normal' });
model.fit(X, y);

// Expected: predictions close to [8, 10]
// Actual: throws error
console.log(model.predict([[4], [5]]));

Security Issues

Do not report security vulnerabilities through public GitHub issues.
For security vulnerabilities:
1

Use Private Reporting

Follow the guidelines in SECURITY.md and use GitHub’s private vulnerability reporting.
2

Include Details

Provide:
  • Description of the vulnerability
  • Steps to reproduce
  • Potential impact
  • Suggested fix (if available)
3

Allow Response Time

We will respond to security reports within 48 hours and work with you to address the issue.

Community

GitHub

Star the repo, watch releases, and contribute code

Discussions

Ask questions and share ideas

Issues

Report bugs and request features

Contributing

Want to contribute to bun-scikit? Check out our Contributing Guide to get started!

Contributing Guide

Learn how to contribute to the project

Code of Conduct

Read our community guidelines

Response Times

This is an open-source project maintained by volunteers. While we strive to respond quickly, please be patient:
  • Security issues: Within 48 hours
  • Bug reports: Within 1 week
  • Feature requests: Within 2 weeks
  • Questions: Within 1 week
Community members often respond faster!

Stay Updated

Watch Releases

Get notified about new releases on GitHub

Follow Changelog

Stay up to date with the latest changes

Build docs developers (and LLMs) love