https://github.com/codebenderhq/oomph
Built to serve developers, connecting the next billion
https://github.com/codebenderhq/oomph
app deno framework
Last synced: 4 months ago
JSON representation
Built to serve developers, connecting the next billion
- Host: GitHub
- URL: https://github.com/codebenderhq/oomph
- Owner: codebenderhq
- Created: 2022-12-20T19:13:11.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-02-17T02:43:10.000Z (about 1 year ago)
- Last Synced: 2025-10-20T16:44:39.951Z (6 months ago)
- Topics: app, deno, framework
- Language: JavaScript
- Homepage: https://sauveur.dev/
- Size: 1.34 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# oomph
You learn code for the same reason you learned to read and write
It is a way for you to communicate, your beliefs
Express your passion and build value not just for yourself but for others
And that is what oomph aims to help you get right, building solutions that not only improve your life but those of your friends too
What do you want to build?
## Getting Started
Below is an example of a simple server using oomph core libaries, that
servers an html site
```
import {
asset_middlware,
html_middleware,
} from "jsr:@oomph/core@0.0.2";
Deno.serve((request) => {
let { pathname } = new URL(request.url);
window._app = `${Deno.cwd()}/src/_app`
if(pathname.includes('.')){
return asset_middlware(request);
}else{
return html_middleware(request);
}
});
```
test out oomph with this [template repo](https://github.com/codebenderhq/sauveur.dev)
## Guide
- Install Visual Studio Code Deno Extension [here](https://marketplace.visualstudio.com/items?itemName=denoland.vscode-deno)
## Tech Debt
- [ ] migrate to typescript
- [ ] improve documentation
- [ ] create visual studio code extension