An open API service indexing awesome lists of open source software.

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

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
```