https://github.com/thutasann/c-tools
building tools in C
https://github.com/thutasann/c-tools
c ncurses nodejs-addon text-editor web-server
Last synced: about 2 months ago
JSON representation
building tools in C
- Host: GitHub
- URL: https://github.com/thutasann/c-tools
- Owner: thutasann
- Created: 2024-10-21T12:12:15.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-11-09T07:12:10.000Z (7 months ago)
- Last Synced: 2025-02-09T04:17:10.003Z (4 months ago)
- Topics: c, ncurses, nodejs-addon, text-editor, web-server
- Language: C
- Homepage:
- Size: 104 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Building Tools in C
In this repo, Tools, Native Libraries, Addons will be created with C.
## Table of Contents
| Topic | Source |
| --------- | -------------------------- |
| Notes | [Source](./docs/README.md) |
| Scripts | [Source](#scripts) |
| Resources | [Source](#resources) |## Tools
| Tools | Source |
| ----------------------- | --------------------------------------- |
| First Text Editor | [Source](./src/first-editor) |
| Simple Nodejs Addon | [Source](./src/simple_nodejs_addon) |
| Web Server from scratch | [Source](./src/web_server_from_scratch) |## Scripts
**Run Simple Text Editor:**
```bash
make clean && make run PROJECT=first-editor
```**Run Web Server from Scratch**
```bash
make clean && make run PROJECT=web_server_from_scratch
```**display the exit status of the last executed command**
```bash
echo $?
```## Resources
- [Article](https://viewsourcecode.org/snaptoken/kilo/)
- [Ncurses](https://ftp.gnu.org/pub/gnu/ncurses/)