{"id":20690782,"url":"https://github.com/lemol/nzilajs","last_synced_at":"2026-04-17T16:31:48.264Z","repository":{"id":3050596,"uuid":"4072102","full_name":"lemol/nzilajs","owner":"lemol","description":"A lightweight and very simple (but powerful) client side javascript MVC framework.","archived":false,"fork":false,"pushed_at":"2012-04-22T22:44:59.000Z","size":184,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-11T01:27:35.447Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lemol.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-04-19T05:53:00.000Z","updated_at":"2017-06-16T10:44:40.000Z","dependencies_parsed_at":"2022-09-17T11:25:56.747Z","dependency_job_id":null,"html_url":"https://github.com/lemol/nzilajs","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lemol/nzilajs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lemol%2Fnzilajs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lemol%2Fnzilajs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lemol%2Fnzilajs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lemol%2Fnzilajs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lemol","download_url":"https://codeload.github.com/lemol/nzilajs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lemol%2Fnzilajs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31936549,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T12:37:54.787Z","status":"ssl_error","status_checked_at":"2026-04-17T12:37:25.095Z","response_time":62,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2024-11-16T23:14:15.011Z","updated_at":"2026-04-17T16:31:48.250Z","avatar_url":"https://github.com/lemol.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"nzila.js\n========\n\nA lightweight and very simple (but powerful) client side javascript MVC framework.\n\n##Examples\n\nConsider the html:\n\n```html\n\u003ca href=\"#!/hello/world\"\u003eHello world!\u003c/a\u003e |\n\u003ca href=\"#!/hello/me/MyName\"\u003eHello me (put your name on the url)\u003c/a\u003e\n```\n\n1. With simple actions:\n\n```javascript\nvar app = new nzila.App();\n\napp.route(\"hello/world/\", function() {\n    alert(\"Hello world!\");\n});\napp.route(\"hello/me/:name\", function(name) {\n    alert(\"Hello \" + name + \"!\");\n});\n\napp.start();\n```\n\n2. With controller:\n\n```javascript\nfunction Hello() {\n}\nHello.prototype = {\n    world: function() {\n        alert(\"Hello world!\");\n    },\n    me: function(name) {\n        alert(\"Hello \" + name + \"!\");\n    }\n};\n\nvar app = new nzila.App();\napp.route(\"hello\", nzila.Controller(Hello));\napp.start();\n```\n\nby **[Leza Morais Lutonda](http://github.com/lemol)** (*[Lemol-C Software](http://lemolsoft.webs.com)*)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flemol%2Fnzilajs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flemol%2Fnzilajs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flemol%2Fnzilajs/lists"}