Releases: charlie-map/teru
Releases · charlie-map/teru
Teru v1.2.0
New Teru Functionality
Teru has two new updates!
app_use()
can now create simple directory connections. By adding:
teru_t app = teru();
app_use(app, "/", getenv("PWD"), "/public");
Now, whenever someone goes to URL_HERE/public/style.css
or any other page in the public
directory, the server will allow access to the page.
res_render()
now renders files using a simple match schema. The schema is easily customizable to one's project. Future updates will include creating a functionality for conditional rendering of data.
Teru v1.0.0
Welcome to Teru!
This marks the start of Teru, a Express.js style library for use in C servers.