Skip to content

Latest commit

 

History

History
79 lines (66 loc) · 3.9 KB

File metadata and controls

79 lines (66 loc) · 3.9 KB
layout default
permalink /projects
title Projects

Bytecode Alliance Projects

An essential way the Bytecode Alliance pursues its mission is to identify and support projects that align with its vision for the evolution of WebAssembly. Hosting such projects allows the Alliance to contribute greater attention and technical oversight both directly and through collaborative participation from its member organizations.

Adopted projects may be designated Core or Hosted projects based on their adherence to the Core or Hosted project requirements. Requirements for and recognition of adopted projects are managed by the Alliance's Technical Steering Committee per its charter, and approved by the Board. A complete repository of active and archived Bytecode Alliance projects is maintained on GitHub.

Project security

The Bytecode Alliance maintains an active security management and monitoring posture across all of its projects. If you think you have found a security issue in a Bytecode Alliance project or would like to know more, please consult our [Security Policy]({{ site.baseurl }}/security) for details on reporting, disclosure, and remediation.

Core projects

{% comment %}Assign projects from list in _data/projects.yml with status value "core" and active value "true"{% endcomment %} {% assign core = site.data.projects | where:"status", "core" %} {% assign core_active = core | where: "active", "true" %} {% comment %}Loop through projects in "core" variable{% endcomment %} {% for project in core_active %}
{{ project.description }}


{% endfor %}

Hosted projects

{% comment %}Assign projects from list in _data/projects.yml with active value "true" to active variable{% endcomment %} {% assign hosted = site.data.projects | where:"status", "hosted" %} {% assign hosted_active = hosted | where:"active", "true" %} {% comment %}Loop through projects in active variable{% endcomment %} {% for project in hosted_active %}
{{ project.description }}


{% endfor %}