SkillAgentSearch skills...

Unic

Unic is a high performance, open source web framework

Install / Use

/learn @unicframework/Unic
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

Unic Framework

<p align="center"> <img src="https://github.com/unicframework/docs/blob/main/unic-logo.jpg" width="400px" alt="Unic Logo"> </p>

Unic is a high performance, open source web application framework. Unic framework is fast, minimal and unopinionated web framework inspired by express. Unic is simple and flexible and provide lots of features to create apis and web application quickly.

Features

  • Fast and flexible.
  • Extremely light weight.
  • Minimal and unopinionated.
  • Simple and robust routing.
  • Robust middlewares.

Installation

Unic web framework is for PHP, so it's requires PHP 7.4 or newer. now you won’t need to setup anything just yet.

  • Install composer if you have not installed.
composer create-project unicframework/unic blog

It will create a blog project for you.

Simple Example

A simple Hello, World web application in unic framework.

use Unic\App;

$app = new App();

$app->get('/', function($req, $res) {
    $res->send('Hello, World!');
});

$app->get('/api', function($req, $res) {
    $res->json([
        'status' => 'Ok',
    ]);
});

$app->start();

Documentation

License

MIT License

Related Skills

View on GitHub
GitHub Stars16
CategoryDevelopment
Updated8mo ago
Forks5

Languages

PHP

Security Score

87/100

Audited on Jul 16, 2025

No findings