Questions tagged [balde]

Balde is a microframework for C based on GLib and bad intentions.

Balde is a microframework for C based on GLib and bad intentions. It is designed to be fast, simple, and memory efficient. Most of its architecture is based on other microframeworks, like Flask, and it can run on any web server that supports FastCGI.

With balde you can serve hundreds of requests per second with a minimal memory footprint and all the performance features provided by FastCGI. Features

  • Simple templating engine, that converts markup to C code that is linked directly to the application binary.
  • Static resources are embedded and served from the application binary.
  • RESTful request dispatching. Supports most HTTP methods.
  • Reverse resolution of URLs (similar to Flask's "url_for" function).
  • Compatible with FastCGI and CGI servers.
  • Runs on any GLib-capable system.

Upcoming features

  • Secure cookies (client side sessions).
  • File uploads.

References

http://balde.io/

8 questions
15
votes
5 answers

Call route from button click laravel

I am using the Laravel framework and the blade templating engine for one of my projects, where I have a route which looks like Route::get('/problems/{problem-id}/edit', 'AdminController@editProblem'); I have editProblem method in AdminController…
rimonmostafiz
  • 1,341
  • 1
  • 15
  • 33
7
votes
5 answers

How can use laravel assets in vue component

i using laravel with vue js i want to show a image element in vue components but i cant use Laravel blades helpers ! its show me Error So How Can I Use Assets…
Mahdi Mirhendi
  • 363
  • 1
  • 4
  • 14
2
votes
1 answer

Balde - setup problems

I am trying to setup Balde (http://balde.io). I referred their docs, downloaded the latest stable release, installed fastcgi dev kit and apache with mod fcgi. Then I built balde. Then I tried the example and compiled it with gcc hello.c `pkg-config…
Megh Parikh
  • 924
  • 2
  • 7
  • 25
1
vote
0 answers

How to use Vue tags in Laravel Blade?

Hi, guys! I'm using Vue in my Laravel project. If I use Vue componet in Blade, it works: ... ...