Skip to content

Latest commit

 

History

History
48 lines (40 loc) · 1.18 KB

README.md

File metadata and controls

48 lines (40 loc) · 1.18 KB

Salt

Salt is a full stack framework written in C

The technical goal is to optimize the framework for:

  1. Speed
  2. Lightweight
  3. Portability across platforms including embedded systems
  4. Compatibility with other languages like Node, python or PHP as a C extension

How to get started?

Installation

Folder Structure

  .
  ├── ACL
  ├── assets
  │   └── img
  ├── HTTP
  ├── Interpreter
  │   ├── crafting_interpreters
  │   │   └── scanning
  │   │   ├── a.out
  │   │   ├── lex_main
  │   │   ├── lex.yy.c
  │   │   ├── lines.l
  │   │   ├── main
  │   │   └── scanning.c
  │   └── main.c
  ├── LICENSE
  ├── Makefile
  ├── MVC
  │   ├── Controller
  │   ├── Model
  │   ├── Router
  │   └── View
  │   └── Engine
  │   ├── Amps
  │   │   └── README.md
  │   ├── Mdown
  │   └── Zap
  │   └── README.md
  ├── README.md
  └── Session