{"id":23314867,"url":"https://github.com/shikaan/titef","last_synced_at":"2025-08-08T10:36:47.719Z","repository":{"id":28180741,"uuid":"116556753","full_name":"shikaan/titef","owner":"shikaan","description":"🌠 A tiny, lightning-fast, zero-dependecies JavaScript test framework 🌠","archived":false,"fork":false,"pushed_at":"2023-01-07T02:18:27.000Z","size":1205,"stargazers_count":18,"open_issues_count":23,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-14T04:56:08.326Z","etag":null,"topics":["ava","framework","javascript","jest","library","mocha","small","test","zero-dependency"],"latest_commit_sha":null,"homepage":"https://shikaan.github.io/titef/","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/shikaan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-01-07T10:34:50.000Z","updated_at":"2025-03-30T00:44:18.000Z","dependencies_parsed_at":"2023-01-14T08:18:17.561Z","dependency_job_id":null,"html_url":"https://github.com/shikaan/titef","commit_stats":null,"previous_names":[],"tags_count":30,"template":false,"template_full_name":null,"purl":"pkg:github/shikaan/titef","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shikaan%2Ftitef","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shikaan%2Ftitef/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shikaan%2Ftitef/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shikaan%2Ftitef/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shikaan","download_url":"https://codeload.github.com/shikaan/titef/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shikaan%2Ftitef/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269409351,"owners_count":24412140,"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","status":"online","status_checked_at":"2025-08-08T02:00:09.200Z","response_time":72,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["ava","framework","javascript","jest","library","mocha","small","test","zero-dependency"],"created_at":"2024-12-20T15:18:13.136Z","updated_at":"2025-08-08T10:36:47.685Z","avatar_url":"https://github.com/shikaan.png","language":"JavaScript","readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://preview.ibb.co/dBFOtc/logo.png\" alt=\"Titef logo\" width=\"320\" /\u003e\n  \u003cp align=\"center\"\u003e\n    🌠 A tiny, lightning-fast, zero-dependecies JavaScript test framework 🌠\n  \u003c/p\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://travis-ci.org/shikaan/titef\"\u003e\n    \u003cimg src=\"https://travis-ci.org/shikaan/titef.svg?branch=master\" alt=\"Build Status\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://badge.fury.io/js/titef\"\u003e\n    \u003cimg src=\"https://badge.fury.io/js/titef.svg\" alt=\"npm version\" height=\"18\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n### 🎯 Why you should use it?\n\n⚡ Unbelievably fast (check it [here](https://shikaan.github.io/titef/performance/))\n\n👌 ~2.9Kb (gzipped) of whatever you need in most of the cases\n\n🏄 Close-to-zero migration effort from Mocha, Jasmine, Jest;\n\n📖 Lots of docs make it user and contributor friendly\n\n## 📥 Installation\n\n```bash\nnpm install --save titef\n```\n\n## 👓 Usage\n\n```bash\nnpx titef test/awesome.specs.js\n```\n\nOlder npm:\n\n```bash\nnode_modules/.bin/titef test/awesome.specs.js\n```\n\n## 👣 Getting started\n\nYour first test file\n\n```javascript\n// test.js\n\nconst assert = require('assert');\n\nconst truthy = () =\u003e true;\n\nsuite('truthy', () =\u003e {\n  spec('should return true', () =\u003e {\n    assert.ok(truthy());\n  });\n  \n  spec('should not return false', () =\u003e {\n    assert.notDeepEqual(truthy(), false);\n  });\n});\n```\n\nYour first test run\n\n```bash\n$ npx titef ./test.js\n```\n\nFor further information about writing and running tests in Titef \ntake a look at \n[Titef: Recipes](https://shikaan.github.io/titef/recipes/) to \nget up and running in no time.\n\n\n## 🎁 Contributing\n\nContributors are well welcomed!\n\n[Here](./.github/CONTRIBUTING.md) you'll find all the information you\nneed to start to get going. A small preview:\n\n- [API docs](https://shikaan.github.io/titef/api/)\n- [developer documentation](https://github.com/shikaan/titef/blob/master/README.md)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshikaan%2Ftitef","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshikaan%2Ftitef","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshikaan%2Ftitef/lists"}