{"id":13681861,"url":"https://github.com/rosano/launchlet","last_synced_at":"2025-04-14T05:21:26.915Z","repository":{"id":54310875,"uuid":"213946084","full_name":"rosano/launchlet","owner":"rosano","description":"Make the web yours.","archived":false,"fork":false,"pushed_at":"2023-12-20T11:37:47.000Z","size":2193,"stargazers_count":44,"open_issues_count":3,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-12T09:22:15.434Z","etag":null,"topics":["0data","bookmarklet","fission","keyboard","launcher","local-first","offline-first","remotestorage","single-page-app","spa","svelte","unhosted","userscripts","userstyles"],"latest_commit_sha":null,"homepage":"https://launchlet.dev","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rosano.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null},"funding":{"open_collective":"rosano"}},"created_at":"2019-10-09T14:51:38.000Z","updated_at":"2024-12-17T17:33:36.000Z","dependencies_parsed_at":"2024-02-10T07:02:03.844Z","dependency_job_id":null,"html_url":"https://github.com/rosano/launchlet","commit_stats":{"total_commits":2488,"total_committers":3,"mean_commits":829.3333333333334,"dds":0.001607717041800627,"last_synced_commit":"715598df4554da0ca908cb03ef20beeb7cdfb4b6"},"previous_names":["launchlet/launchlet"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rosano%2Flaunchlet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rosano%2Flaunchlet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rosano%2Flaunchlet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rosano%2Flaunchlet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rosano","download_url":"https://codeload.github.com/rosano/launchlet/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248824999,"owners_count":21167413,"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":["0data","bookmarklet","fission","keyboard","launcher","local-first","offline-first","remotestorage","single-page-app","spa","svelte","unhosted","userscripts","userstyles"],"created_at":"2024-08-02T13:01:37.034Z","updated_at":"2025-04-14T05:21:26.892Z","avatar_url":"https://github.com/rosano.png","language":"JavaScript","readme":"\u003ca href=\"https://launchlet.dev\"\u003e\u003cimg alt=\"Project logo\" src=\"https://static.rosano.ca/launchlet/identity.svg\" width=\"64\" /\u003e\u003c/a\u003e\n\n# [Launchlet](https://launchlet.dev)\n\n_Customize the web with JavaScript or CSS_\n\n\u003ca href=\"https://launchlet.dev\"\u003eLaunchlet\u003c/a\u003e is a simple way to add a name to snippets of code and run it. Inspired by [Quicksilver](https://qsapp.com/), it functions primarily via mouseless interaction and lets you access your Recipes with a few keyboard strokes. You can also use it to personalize websites with custom CSS or JavaScript. Read the \u003ca href=\"https://launchlet.dev\"\u003eguide\u003c/a\u003e for more details.\n\nYou can run Launchlet as a [bookmarklet](https://launchlet.dev/compose), [browser extension](https://github.com/rosano/launchlet-extension), or as a [module](https://github.com/rosano/launchlet/tree/master/os-app/dev-package) in your own project to add a 'jump to' functionality.\n\nThere is also an app where you can compose a launcher personalized with your own Recipes.\n\n\u003ca href=\"https://launchlet.dev/compose\"\u003e\u003cimg alt=\"Open app\" src=\"http://static.rosano.ca/_shared/_RCSAppButton.svg\" /\u003e\u003c/a\u003e\n\n## Architecture\n\nThe project follows a [Universal folder structure](https://rosano.hmm.garden/01f71kp52knc5nnv08qr9kzj3m) and is a large collection of mostly small modules or functions that are put together using [Svelte](https://svelte.dev) and [Rollup](https://rollupjs.org). With the exception of a few 'global' or 'magic' things such as the localization function `OLSKLocalized`, most resources used by a module should be in the same folder or referenced by path name.\n\nRouting, rendering markdown content, and serving pages is done via a Node.js server (usually configured in the *controller.js* files).\n\n## Development Setup\n\n(For a deeper dive, watch [the tutorial](https://rosano.hmm.garden/01f62t5yseb053m024v1mczbzy)).\n\nInstall [Node.js and npm](https://nodejs.org/en/download/), then:\n\n```\nnpm run setup\n```\n\nThis should create an `.env` file if there is none. If you encounter errors referring to this file, you can find missing variables in `.env-sample`.\n\n## Running\n\n### Start the Rollup process to build and reload automatically\n\n```\nnpm run watch\n```\n\n### Start the Node.js server to view in the browser\n\n```\nnpm start\n```\n\nIt should be accessible at \u003ca href=\"http://localhost:3000\" target=\"_blank\"\u003ehttp://localhost:3000\u003c/a\u003e.\n\n## Testing\n\nSee [Testing logic and interfaces](https://rosano.hmm.garden/01f7v3hk3txz5d0v9ms467x8bz) for a tutorial.\n\n### Run logic tests\n\n```\nnpm test\n```\n\n### Run interface tests\n\n```\nnpm test ui\n```\n\nTo filter interface test paths by string:\n\n```\nnpm test ui match=ResultList\n```\n\nTo filter interface test paths by JavaScript regular expressions:\n\n```\nnpm test ui match='/(guide|vitrine)/'\n```\n\n## ❤️\n\nHelp me keep creating projects that are public, accessible for free, and open-source.\n\n\u003ca href=\"https://rosano.ca/back\"\u003e\u003cimg alt=\"Become a backer\" src=\"https://static.rosano.ca/_shared/_RCSBackButton.svg\" /\u003e\u003c/a\u003e\n\n## License\n\nThe code is released under a [Hippocratic License](https://firstdonoharm.dev), modified to exclude its use for surveillance capitalism and also to require large for-profit entities to purchase a paid license.\n\n## Questions\n\nFeel free to reach out on [Mastodon](https://mastodon.online/@rosano) or [Twitter](https://twitter.com/rosano).\n","funding_links":["https://opencollective.com/rosano"],"categories":["JavaScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frosano%2Flaunchlet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frosano%2Flaunchlet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frosano%2Flaunchlet/lists"}