Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

website: mega launch week #379

Merged
merged 3 commits into from
Dec 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "Inferring an API Spec: How Studio Analyzes Hono Apps"
description: A quick look at how Hono api code is statically analyzed in Fiberplane Studio
slug: code-analysis
date: 2024-11-22
date: 2024-12-02
author: Jacco Flenter
tags:
- typescript
Expand Down
40 changes: 40 additions & 0 deletions www/src/content/blog/2024-12-02-mega-launch-week.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
title: "Mega Launch Week: AI Powered Debugging to Goose Power Ups"
description: "Fiberplane's first official launch week where every day we ship the coolest features to support your enhanced development experiences."
slug: mega-launch-week-2024
date: 2024-12-02
author: Fiberplane
tags:
- Fiberplane
- Hono
---

import { LinkCard } from "@astrojs/starlight/components";

Welcome to MEGA LAUNCH WEEK and Fiberplane’s first official launch week where every day we ship the coolest features to support your enhanced development experiences. You can follow along by referencing this blog post each day or bookmark this thread for daily updates. Follow all the development tool companies launching this week on the official Launch Week channels here.

Ready for the hottest new ships in your local debugging world from AI workflows that make life easier to HONC inspired builds to ship APIs faster? Let’s get into it.

## Monday, Dec 2nd: Fiberplane Studio static code analysis for auto Hono.js API routes

One of Fiberplane Studio’s core features is the ability to leverage AI generated test data for your Hono API. To do this, Studio needs to understand how your routes interact with middleware, validation, and database schemas. With today’s new feature ship, we provide better insights from your source code for more relevant testing and ultimately a better API spec without your manual overhead.

Read the full product post here:

<LinkCard
title="Code Analysis"
description="Fiberplane Studio static code analysis for auto Hono.js API routes"
href="https://fiberplane.com/blog/code-analysis/"
/>

## Tuesday, Dec 3rd: To be announced!


## Wednesday, Dec 4th: To be announced!


## Thursday, Dec 5th: To be announced!


## Friday, Dec 6th: To be announced!

6 changes: 5 additions & 1 deletion www/src/pages/blog/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,11 @@ function getColorValueBasedOnContent(content: string) {
frontmatter={{
title: "Blog",
description: "Fiberplane likes to write sometimes",
template: "splash"
template: "splash",
banner: {
content:
'<span>It\'s <a href="/mega-launch-week-2024">Mega Launch Week</a> 🚀 Follow along for the latest features shipping this week from Fiberplane</span>'
}
}}
>
<ul class="blog-post-list">
Expand Down
4 changes: 4 additions & 0 deletions www/src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ import StarlightPage from "@astrojs/starlight/components/StarlightPage.astro";
frontmatter={{
title: "Fiberplane",
template: "splash",
banner: {
content:
'<span>It\'s <a href="/mega-launch-week-2024">Mega Launch Week</a> 🚀 Follow along for the latest features shipping this week from Fiberplane</span>'
},
hero: {
title: "Test and debug your Hono API",
image: { file: fpxHeroScreenshot },
Expand Down
Loading