{"id":18340207,"url":"https://github.com/momi-foundation-coding/kemboijs","last_synced_at":"2025-10-28T23:05:52.139Z","repository":{"id":35030022,"uuid":"189620249","full_name":"momi-foundation-coding/kemboijs","owner":"momi-foundation-coding","description":"This is a NodeJS API-based framework used to build fast, reliable \u0026 robust API's and micro-services application with NodeJs. ","archived":false,"fork":false,"pushed_at":"2023-01-06T02:31:28.000Z","size":424,"stargazers_count":12,"open_issues_count":15,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-21T18:21:45.711Z","etag":null,"topics":["hacktoberfest"],"latest_commit_sha":null,"homepage":"http://www.kemboijs.org/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/momi-foundation-coding.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-05-31T15:48:07.000Z","updated_at":"2022-08-12T14:13:45.000Z","dependencies_parsed_at":"2023-01-15T12:22:00.240Z","dependency_job_id":null,"html_url":"https://github.com/momi-foundation-coding/kemboijs","commit_stats":null,"previous_names":["kemboijs/kemboijs"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/momi-foundation-coding%2Fkemboijs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/momi-foundation-coding%2Fkemboijs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/momi-foundation-coding%2Fkemboijs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/momi-foundation-coding%2Fkemboijs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/momi-foundation-coding","download_url":"https://codeload.github.com/momi-foundation-coding/kemboijs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247440654,"owners_count":20939223,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hacktoberfest"],"created_at":"2024-11-05T20:21:34.535Z","updated_at":"2025-10-28T23:05:47.094Z","avatar_url":"https://github.com/momi-foundation-coding.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![CircleCI](https://circleci.com/gh/kemboijs/kemboijs.svg?style=svg)](https://circleci.com/gh/kemboijs/kemboijs)\n[![Maintainability](https://api.codeclimate.com/v1/badges/907ee7a5580bf5e511fe/maintainability)](https://codeclimate.com/github/kemboijs/kemboijs/maintainability)\n[![Test Coverage](https://api.codeclimate.com/v1/badges/907ee7a5580bf5e511fe/test_coverage)](https://codeclimate.com/github/kemboijs/kemboijs/test_coverage)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/kemboijs/kemboijs/blob/master/LICENSE)\n[![npm version](https://badge.fury.io/js/kemboijs.svg)](https://badge.fury.io/js/kemboijs)\n![npm](https://img.shields.io/npm/dt/kemboijs.svg)\n\n# KemboiJS\n\nA NodeJS API-based framework. The framework is at its initial state and development is currently being worked on. Therefore, expect to see incomplete work.\n\n\n# Philosophy\n\nThe current web development development is based on API and microservices. Templating usage has reduced for the past few years.\nIn todays enterprise software, micro-services design patterns has been adopted. REST APIs tend to provide simple, stateless, and highly decoupled business worksflows. \nAlso, more sophisticated architectures rely on API gateway that is fast. The following can be handled by REST API, SSL termination, logging, content/file compressions, authentication and authorization, caching,and even load blancing. \nThe usage of c++ addons in nodejs community is increasing and its experimental process is one of major success.\nWith such growth, there is a higher possibility of creating server with an optimized code as C++ allow for Single Instruction, Multiple Data (SIMD). It optimization performance during compilation. Leveraging API and C++ for better server development, kemboijs is striving towards making it better and easier to work with.\n\n\n# Installation\n\nThis is a [NodeJS](https://nodejs.org/en/) module available through [npm registry](https://www.npmjs.com/package/kemboijs).\nInstallation is done using npm install command\n\n```bash\n$ npm install kemboijs\n```\n\n# Tests\n\n```bash\n$ npm test\n```\n\n# Example and Usage\n```javascript \nconst Server = require('kemboijs');\n\nconst port = 8001;\nconst app = new Server()\n\n/**\n * CRUD implementation\n * POST, GET, PUT, DELETE\n */\napp.get('/', (req, res) =\u003e {\n    // send takes result, status(optional)\n    res.send({\n        result: \"Hello World!\",\n        method: 'GET'\n    }, 200)\n})\n\napp.post('/', (req, res) =\u003e {\n    const { username } = req.body;\n    if(!username) {\n        return res.send({ message: \"Please provide username \"}, 400)\n    }\n    \n    return res.send({\n        result: `Hello ${username}`,\n        method: 'POST'\n    }, 201)\n})\n\napp.put('/', (req, res) =\u003e {\n    res.send({\n        result: \"Hello World - Edited!\",\n        method: 'PUT'\n    }, 200)\n})\n\napp.del('/', (req, res) =\u003e {\n    res.send({\n        result: \"Deleted successfully\",\n        method: 'DELETE'\n    }, 200)\n})\n\napp.listen(port, () =\u003e {\n    console.log(`The server is listenng to http://127.0.0.1:${port}`)\n});\n```\n\n# Support\n\n- [Documentation](https://github.com/me-x-mi/kemboijs)\n- [Community Support](https://github.com/me-x-mi/kemboijs)\n- [Wiki Page](https://github.com/me-x-mi/kemboijs/wiki)\n- [Tutorials](https://github.com/me-x-mi/kemboijs)\n- [Frequent Asked Questions(FAQ)](https://github.com/me-x-mi/kemboijs)\n\n# Issue Submission\n\nRead [submission guideline](https://github.com/me-x-mi/kemboijs/blob/master/.github/ISSUE_TEMPLATE/feature_request.md) and [code of conduct](https://github.com/me-x-mi/kemboijs/blob/master/CODE_OF_CONDUCT.md) before opening an issue.\n\n# Contribute\n\nThere are several ways for contributing\n\n1. Adding new features or fixing bugs\n2. Improving documentation\n3. Raising issues and/or bugs\n4. Writing tutorials\n5. Writing tests\n\nPlease read our [contribution guide](https://github.com/me-x-mi/kemboijs/blob/master/CONTRIBUTING.md) and check that build pass before and your branch is updated to `upstream` submitting any pull request.  \n\n# Licence\n\n[MIT](https://github.com/me-x-mi/kemboijs/blob/master/LICENSE) © 2019 [Ezrqn Kemboi](https://www.ezrqnkemboi.dev/)\n\n# Disclaimer\n\nAll ideas expressed here are mine and does not does not reflect any company or organization. All contributors should also express their ideas without making associations to any organization.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmomi-foundation-coding%2Fkemboijs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmomi-foundation-coding%2Fkemboijs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmomi-foundation-coding%2Fkemboijs/lists"}