https://github.com/vnxx/combination-finder
Find the combination of numbers whose sum equals x
https://github.com/vnxx/combination-finder
algorithm finder golang react typescript
Last synced: about 1 month ago
JSON representation
Find the combination of numbers whose sum equals x
- Host: GitHub
- URL: https://github.com/vnxx/combination-finder
- Owner: vnxx
- License: mit
- Created: 2025-05-11T16:30:34.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-12T02:05:12.000Z (about 1 year ago)
- Last Synced: 2025-05-13T00:55:47.059Z (about 1 year ago)
- Topics: algorithm, finder, golang, react, typescript
- Language: TypeScript
- Homepage: https://combifinder.bykevin.work
- Size: 135 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Refiber
A web framework based on the [Gofiber](gofiber.io) framework, follows the MVC architecture (Model, View & Controller).
Refiber comes with [Inertia.js](https://inertiajs.com/) built-in. [Inertia.js](https://inertiajs.com/) is a powerful tool for creating Single Page Applications (SPA) without needing a separate API.
```go
// in your Controller
func (web *webController) Index(s support.Refiber, c *fiber.Ctx) error {
return web.inertia.Render(c).Page("Home", &fiber.Map{
"hello": "World",
})
}
```
```tsx
// in your React App
export default function HomePage({ hello }) {
return
Hello {hello}
;
}
```
## Documentation
Online documentation [https://refiber.bykevin.work](https://refiber.bykevin.work)
## Quick Install
To install Refiber, you first need to install the CLI. Use the following command:
```
go install github.com/refiber/refiber-cli@latest
```
Now you can just run this command bellow to create a new Refiber project
```
refiber-cli new my-app
```