{"id":28491634,"url":"https://github.com/jasgigli/fastframe.js","last_synced_at":"2026-05-11T07:23:53.222Z","repository":{"id":293435156,"uuid":"984002176","full_name":"jasgigli/fastframe.js","owner":"jasgigli","description":"FastFrame.js — The Lightning-Fast, Minimal Frontend Framework","archived":false,"fork":false,"pushed_at":"2025-05-15T09:31:31.000Z","size":90,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-21T01:38:36.993Z","etag":null,"topics":["compiler","frontend-framework","javascript","npm-package","reactivity","ssr","typescript","ui-library"],"latest_commit_sha":null,"homepage":"","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/jasgigli.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","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,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-15T08:42:09.000Z","updated_at":"2025-07-15T21:12:08.000Z","dependencies_parsed_at":"2025-05-15T10:35:53.548Z","dependency_job_id":"f220f3d4-188f-4aae-bcf1-fb18dd2188b5","html_url":"https://github.com/jasgigli/fastframe.js","commit_stats":null,"previous_names":["jasgigli/fastframe.js"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jasgigli/fastframe.js","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jasgigli%2Ffastframe.js","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jasgigli%2Ffastframe.js/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jasgigli%2Ffastframe.js/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jasgigli%2Ffastframe.js/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jasgigli","download_url":"https://codeload.github.com/jasgigli/fastframe.js/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jasgigli%2Ffastframe.js/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272219239,"owners_count":24894383,"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-26T02:00:07.904Z","response_time":60,"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":["compiler","frontend-framework","javascript","npm-package","reactivity","ssr","typescript","ui-library"],"created_at":"2025-06-08T08:07:59.427Z","updated_at":"2026-05-11T07:23:48.199Z","avatar_url":"https://github.com/jasgigli.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FastFrame.js\n\nA next-generation frontend framework with compile-time reactivity, zero-config setup, partial hydration, and first-class TypeScript support.\n\n## Features\n\n- 🚀 **Compile-time reactivity** - Optimized reactive updates without a virtual DOM\n- 🔧 **Zero-config setup** - Get started quickly with sensible defaults\n- 🌊 **Partial hydration** - Load only what you need, when you need it\n- 📘 **First-class TypeScript** - Built from the ground up with type safety\n\n## Packages\n\n- `@fastframe/core` - Runtime and reactivity primitives\n- `@fastframe/compiler` - Vite plugin and AST transforms\n- `fastframe-cli` - Command-line interface for scaffolding and building\n- `create-fastframe` - Create new FastFrame.js projects with one command\n- `@fastframe/webpack-loader` - Webpack loader for FastFrame.js\n- `@fastframe/rollup-plugin` - Rollup plugin for FastFrame.js\n\n## Installation\n\n### Create a New Project\n\nThe easiest way to get started with FastFrame.js is to use the `create-fastframe` package:\n\n```bash\n# Using npm\nnpm create fastframe my-app\n\n# Using yarn\nyarn create fastframe my-app\n\n# Using pnpm\npnpm create fastframe my-app\n```\n\n### Install CLI Globally\n\nYou can also install the CLI globally:\n\n```bash\n# Using npm\nnpm install -g fastframe-cli\n\n# Using yarn\nyarn global add fastframe-cli\n\n# Using pnpm\npnpm add -g fastframe-cli\n```\n\nThen create a new project:\n\n```bash\nfastframe init my-app\n```\n\n## Development\n\n```bash\n# Navigate to your project\ncd my-app\n\n# Install dependencies\nnpm install\n\n# Start the development server\nnpm run dev\n```\n\n## Building for Production\n\n```bash\n# Build the project\nnpm run build\n\n# Preview the production build\nnpm run preview\n```\n\n## Using with Build Tools\n\n### Vite\n\nFastFrame.js works out of the box with Vite when using the CLI.\n\n### Webpack\n\n```bash\nnpm install --save-dev @fastframe/webpack-loader\n```\n\n```js\n// webpack.config.js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.ff\\.js$/,\n        use: '@fastframe/webpack-loader'\n      }\n    ]\n  }\n};\n```\n\n### Rollup\n\n```bash\nnpm install --save-dev @fastframe/rollup-plugin\n```\n\n```js\n// rollup.config.js\nimport fastframe from '@fastframe/rollup-plugin';\n\nexport default {\n  input: 'src/main.js',\n  output: {\n    file: 'dist/bundle.js',\n    format: 'esm'\n  },\n  plugins: [fastframe()]\n};\n```\n\n## Documentation\n\nFor detailed documentation, visit [fastframejs.org](https://fastframejs.org).\n\n## Contributing\n\nContributions are welcome! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for details.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjasgigli%2Ffastframe.js","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjasgigli%2Ffastframe.js","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjasgigli%2Ffastframe.js/lists"}