Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/FeralLabs/Apricot
Apricot is a web application development library for C++. It tries to create a simple yet effective way for programmers to create blazing fast websites in a natural way.
https://github.com/FeralLabs/Apricot
Last synced: about 1 month ago
JSON representation
Apricot is a web application development library for C++. It tries to create a simple yet effective way for programmers to create blazing fast websites in a natural way.
- Host: GitHub
- URL: https://github.com/FeralLabs/Apricot
- Owner: FeralLabs
- Created: 2013-03-02T22:37:45.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-06-03T20:30:07.000Z (over 10 years ago)
- Last Synced: 2024-08-02T05:12:00.125Z (4 months ago)
- Language: C++
- Homepage:
- Size: 276 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-blazingly-fast - Apricot - Apricot is a web application development library for C++. It tries to create a simple yet effective way for programmers to create blazing fast websites in a natural way. (C++)
README
![Travis](https://travis-ci.org/FeralLabs/Apricot.svg?branch=master)
Welcome !
=======__Apricot__ is a web application development library for C++. It tries to create a
simple yet effective way for programmers to create blazing fast websites in a natural way.Being inspired by Node.js, we've tried to replicate most of the features in it. Like Node, it has a built in HTTP server that can be customized according to the users project environment (the developers can specify the server’s name, maximum number of requests, single threaded or multi-threaded and many more features).
## Compiling the examples on *nix
To compile the examples or the library you need CMake 2.8 or higher.
__Installing CMAKE on Debian \ Ubuntu \ Kubuntu etc.__
`sudo apt-get install cmake`__Installing CMAKE on Fedora \ RedHat \ Centos__
`sudo yum install cmake`### I have CMAKE what now?
```bash
git clone https://github.com/FeralLabs/Apricot.git
cd Apricot/examples/BasicHTTP
mkdir build
cd build
cmake ..
make
```And that's all