{"id":28444092,"url":"https://github.com/assemblyscript/website","last_synced_at":"2025-10-07T00:09:33.804Z","repository":{"id":37271872,"uuid":"269375018","full_name":"AssemblyScript/website","owner":"AssemblyScript","description":"AssemblyScript's website and documentation.","archived":false,"fork":false,"pushed_at":"2025-09-28T02:19:05.000Z","size":2248,"stargazers_count":62,"open_issues_count":24,"forks_count":91,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-09-28T04:12:52.919Z","etag":null,"topics":["assemblyscript","documentation","website"],"latest_commit_sha":null,"homepage":"https://www.assemblyscript.org","language":"HTML","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/AssemblyScript.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-06-04T14:01:05.000Z","updated_at":"2025-09-05T01:35:10.000Z","dependencies_parsed_at":"2023-09-24T04:44:02.971Z","dependency_job_id":"b921cdd8-2446-4796-b81a-c3a99ba24871","html_url":"https://github.com/AssemblyScript/website","commit_stats":{"total_commits":224,"total_committers":43,"mean_commits":5.209302325581396,"dds":0.5267857142857143,"last_synced_commit":"2039dcf5e6f4df8afd0ee8d62e234f791b11243a"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AssemblyScript/website","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AssemblyScript%2Fwebsite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AssemblyScript%2Fwebsite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AssemblyScript%2Fwebsite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AssemblyScript%2Fwebsite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AssemblyScript","download_url":"https://codeload.github.com/AssemblyScript/website/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AssemblyScript%2Fwebsite/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278699093,"owners_count":26030456,"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-10-06T02:00:05.630Z","response_time":65,"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":["assemblyscript","documentation","website"],"created_at":"2025-06-06T08:40:43.360Z","updated_at":"2025-10-07T00:09:33.786Z","avatar_url":"https://github.com/AssemblyScript.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"AssemblyScript's Website\n========================\n\n[![Deploy](https://github.com/AssemblyScript/website/workflows/Deploy/badge.svg?branch=main)](https://github.com/AssemblyScript/website/actions?query=workflow%3ADeploy)\n\nThe site is built with [VuePress](https://vuepress.vuejs.org/) and reuses its default theme to ease upgrading to newer versions.\n\nThe more important files are:\n\n* [src/**/*.md](./src)\u003cbr /\u003e\n  Documentation and site contents, i.e. what one would typically modify when extending the documentation.\n* [src/.vuepress/sidebar.js](./src/.vuepress/sidebar.js)\u003cbr /\u003e\n  Sidebar contents.\n* [src/.vuepress/nav.js](./src/.vuepress/nav.js)\u003cbr /\u003e\n  Top-navigation contents.\n* [src/.vuepress/redirects](./src/.vuepress/redirects)\u003cbr /\u003e\n  Redirect map of (re)moved pages to new locations.\n* [src/.vuepress/public/](./src/.vuepress/public)\u003cbr /\u003e\n  Assets folder for images etc.\n* [src/.vuepress/public/sponsors](./src/.vuepress/public/sponsors)\u003cbr /\u003e\n  Sponsor logo overrides (file name is collective name).\n\nEditor component\n----------------\n\nMarkdown files can make use of a custom [editor component](./src/.vuepress/public/editor.html) using the `editor` language tag, like so:\n\n````\n```editor\n#!optimize=size\u0026runtime=none\u0026noAssert\u0026explicitStart\u0026enable=simd,reference-types\nexport function add(a: i32, b: i32): i32 {\n  return a + b\n}\n\n#!html\n\u003cscript type=\"module\"\u003e\nconst exports = await instantiate(await compile(), { /* imports */ })\nconsole.log(exports.add(1, 2))\n\u003c/script\u003e\n```\n````\n\nThe first line is an optional shebang indicating selected compiler options. Available options are:\n\n* **optimize** = `string`\u003cbr /\u003e\n  Optimization preset to use. Valid presets are `speed`, `size` and `none`\n* **noAssert**\u003cbr /\u003e\n  Replaces assertions with just their value without trapping.\n* **debug**\u003cbr /\u003e\n  Enables debug information in emitted binaries.\n* **runtime** = `string`\u003cbr /\u003e\n  Specifies the runtime variant to include in the program. Valid variants are `full`, `half`, `stub` and `none`.\n* **noExportMemory**\u003cbr /\u003e\n  Does not export the memory to the host.\n* **importMemory**\u003cbr /\u003e\n  Imports the memory from the host.\n* **exportTable**\u003cbr /\u003e\n  Exports the function table to the host.\n* **importTable**\u003cbr /\u003e\n  Imports the function table from the host.\n* **explicitStart**\u003cbr /\u003e\n  Exports an explicit start function to call.\n* **memoryBase** = `integer`\u003cbr /\u003e\n  Sets the start offset of emitted memory segments.\n* **tableBase** = `integer`\u003cbr /\u003e\n  Sets the start offset of emitted table elements.\n* **use** = `string`\u003cbr /\u003e\n  Comma separated list of global aliases, e.g. to switch the default 'Math' implementation used: `Math=JSMath`\n* **enable** = `string`\u003cbr /\u003e\n  Comma-separated list of future WebAssembly features to enable. Valid features are `sign-extension`, `bulk-memory`, `simd`, `threads` and `reference-types`.\n\nThe current source and associated compiler options can be serialized into a base64 blob this way. For example, when the 🔗 button is clicked, `document.location.hash` is updated with that blob and the then-sharable link is copied to clipboard.\n\nBuilding\n--------\n\nTo work on the site locally, install the dependencies and start a development server serving at [localhost:8080](http://localhost:8080/):\n\n```sh\nnpm install\nnpm start\n```\n\nTo build the site to `dist`, i.e. to verify that it works as expected:\n\n```sh\nnpm run build\n```\n\nDistribution files can also be served instead of using the development server with:\n\n```sh\nnpm run serve\n```\n\nThe page is automatically deployed on pushes to the repository, plus at least once a day to sync contributors and sponsors.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fassemblyscript%2Fwebsite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fassemblyscript%2Fwebsite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fassemblyscript%2Fwebsite/lists"}