Giter Club home page Giter Club logo

examples's People

Contributors

akhil-naidu avatar cone56 avatar dalanmiller avatar dependabot[bot] avatar khot-aditya avatar lambtron avatar mountainash avatar peterver avatar ryuapp avatar xtyrrell avatar yusukebe avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

examples's Issues

Route issue in route example

Hi,
Good job on Hono!

Followed this hono-example-blog example.

The route will become /post/post, not /post.

Index.ts should have this instead, think it would fix it.

app.route('/', middleware)
app.route('/', api)

Am I wrong? Please explain to me in that case how you're suppose to you app.route correct.

Provide a clear example on how to upload files

I am using hono (v3.12.6) in some personal projects lately, it is simple and fun, but when it comes to file handling, I am having some trouble and was not able to figure it out.
I followed the instructions here but with no results :

// ... handlers
.post('/:id/file', async (ctx: AppAuthContext) => {
    const user = ctx.get('user');
    const projectId = ctx.req.param('id');

    const parsed = await ctx.req.parseBody();
    const file = parsed['file'] as File;

    const form = await ctx.req.formData();
    const body = {
      type: form.get('type') as ProjectType,
    };

    const json = await createProjectFile(user, projectId, file, body);

    return ctx.json(json);
  });

and this is my postman request :
image

image

Maybe this is not the correct place for this issue, but I think that a clear example can prevent a lot of headaches.

Thank you.

update examples for hono v4 (serveStatic)

hello,

Thanks for the amazing hono.js.

would it be possible to update the examples to match v4 syntax?

I'm particularly having issues withserveStatic, among other things.

Middleware for camel / snake case conversion

I'm trying to create a middleware which will convert post request body json from camel case to snake case, then response body json from snake case to camel case. The first part is OK, but I'm struggling with the second part. I raised it here, as I also thought it would be nice to add it to the examples. This is what I have so far:

import camelcaseKeys from 'camelcase-keys';
import snakecaseKeys from 'snakecase-keys';

function tryParseJSONObject (jsonString: string) {
  try {
      var o = JSON.parse(jsonString);
      if (o && typeof o === "object") {
          return o;
      }
  }
  catch (e) { return e }

  return undefined
}


app.use('*', async (c, next) => {
  if (c.req.method === 'POST') {
    let bodyText = await c.req.raw.clone().text()
    let jsonObj = tryParseJSONObject(bodyText)
    if (jsonObj && !(jsonObj instanceof Error)) {
      c.json(snakecaseKeys(jsonObj))
    }
  }
  await next()
  try {
    let body = await c.res.json()
    if (body) {
      // How do I set the response body json and avoid potential issues using cloning?
    }
  } catch(e) {}
})

Static site and __STATIC_CONTENT_MANIFEST with test framework

The static example works great.

import { Hono } from 'hono'

import { serveStatic } from 'hono/cloudflare-workers'
import manifest from '__STATIC_CONTENT_MANIFEST'

const app = new Hono()

app.get('/static/*', serveStatic({ root: './', manifest }))
app.use('/favicon.ico', serveStatic({ path: './favicon.ico', manifest  }))
app.get('/', (c) => c.text('This is Home! You can access: /static/fallback.txt'))

Is there a way to get vitest or jest to stop complaining about __STATIC_CONTENT_MANIFEST?

Error: Failed to load url __STATIC_CONTENT_MANIFEST (resolved id: __STATIC_CONTENT_MANIFEST) in foo.test.js. Does the file exist?
 โฏ loadAndTransform node_modules/vite/dist/node/chunks/dep-C-KAszbv.js:53848:21

How can you encrypt keys

How can you encrypt keys to later validate with jwt, I tried with bcrypt but it gave me errors

Something like itty-durable?

Maybe this is too Cloudflare-specific for Hono, but it would be awesome to have something like itty-durable that makes integrating with Durable Objects type-safe and seamless, then Hono would truely be a full stack framework! (hono client + rpc + hono-do ๐Ÿ˜„ )

feat: monorepo Hono RPC example

Are there any example of modern-monorepo-stack (pnpm and turborepo) using Hono RPC?
If not, I want to add!

Did this still the type of client is unkonw. Ran pnpm install and restrated the server.

Next.js App Router

@yusukebe Is it possible to use Hono with the new Next.js app directory? If so, do you have some example?

Thank you for your excellent work

error running blog example

I can get the other examples works but when I run yarn dev on the blog example, I get:

Running custom build: yarn run build
Usage Error: Couldn't find a script named "build".

$ yarn run [--inspect] [--inspect-brk] [-T,--top-level] [-B,--binaries-only] <scriptName> ...

โœ˜ [ERROR] Command failed with exit code 1: yarn run build

Hono Bun jsx displays [object Object] & jsxFactory not specified

From honojs/hono#606 the issue is still valid

Tested with:

  • Bun v0.5.8
  • Huno v3.1.3
  • TypeScript v4.9.5
  1. The answer at honojs/hono#606 (comment) is valid and fixes the problem, but should be updated here in /bun/tsconfig.json

from:

{
  "compilerOptions": {
    "jsx": "react-jsx",
    "jsxFragmentFactory": "Fragment",
    "jsxImportSource": "hono/jsx"
  }
}

to:

{
  "compilerOptions": {
    "jsx": "preserve",
    "jsxFragmentFactory": "Fragment",
    "jsxImportSource": "hono/jsx"
  }
}
  1. there's a second issue that TypeScript errors with:

Option 'jsxFragmentFactory' cannot be specified without specifying option 'jsxFactory'.

Which can be solved by adding "jsxFactory": "jsx",

Add Example Project for Building GraphQL APIs with Pylon using Hono

Hello Hono Maintainers,

I am the creator of a code-first server framework called Pylon for building GraphQL APIs. Pylon simplifies the process by allowing developers to define any TypeScript functions, which Pylon then analyzes to automatically generate a GraphQL API. This approach eliminates the need to write any schema.

I believe it would be beneficial to include an example project in the Hono repository to demonstrate how Pylon leverages Hono and how it can be extended directly with Hono.

This example project would serve as a starter kit for building GraphQL APIs with Hono in an easy and streamlined manner using Pylon. I think this integration could greatly benefit both the Hono and Pylon communities by providing a practical, ready-to-use example.

For more details on how Pylon uses Hono, you can refer to the Pylon documentation and the specific Hono integration section.

If you are interested, I would be happy to prepare and submit a pull request with the example implementation.

Thank you for your consideration.

Durable Objects syntax idea

Looking at https://github.com/honojs/examples/blob/main/durable-objects/src/counter.ts, I wanted to try something that makes a Durable Object feel more like a stateless application but with a c.state property. So I came up with this:

const app = new HonoObject()

const getValue = async (storage: DurableObjectStorage) => await storage.get<number>('value') || 0

app.get('/increment', async (c) => {
  const { storage } = c.state
  const newVal = 1 + await getValue(storage);
  storage.put('value', newVal)
  return c.text(newVal.toString())
})

app.get('/decrement', async (c) => {
  const { storage } = c.state
  const newVal = -1 + await getValue(storage);
  storage.put('value', newVal)
  return c.text(newVal.toString())
})

app.get('/', async c => {
  const value = await getValue(c.state.storage)
  return c.text(value.toString())
})

export { app as Counter }

pages-stack using deprecated commands

pages-stack is a really helpful example, but when I run it I get:

โ–ฒ [WARNING] Specifying a `-- <command>` or `--proxy` is deprecated and will be removed in a future version of Wrangler.

is there a more up to date example available?

Create Official Tailwind Example

It'd be great if there was an official example of how to use Taiwlind with Hono. It's a frequently asked topic on the Discord server.

For example, following the usual docs for getting Tailwind to work in dev on Cloudflare Pages works fine. However, I can't figure out how to get the CSS file to be created in a production build.

cannot use DurableObject from 'cloudflare:workers' with hono

Here is the code in question, modify from cloudflare durable objects example.

The version of Hono is 4.2.7, and wrangler is 3.52.0.

import { DurableObject } from 'cloudflare:workers';
import { Hono } from 'hono';

export type Bindings = {
  COUNTERS: DurableObjectNamespace<Counter>;
}

const app = new Hono<{ Bindings: Bindings }>();

app.get('*', async (c) => {
  const id = c.env.COUNTERS.idFromName('A');
  const obj = c.env.COUNTERS.get(id);

  // obj.getCounterValue should be an async function
  console.log(obj.getCounterValue); // output: null

  const value = await obj.getCounterValue();

  return c.text(`Count is ${value}`);
});

export default app;

// Durable Object
export class Counter extends DurableObject {

  async getCounterValue() {
    const value = (await this.ctx.storage.get('value')) || 0;
    return value;
  }

  async increment(amount = 1) {
    let value: number = (await this.ctx.storage.get('value')) || 0;
    value += amount;
    await this.ctx.storage.put('value', value);
    return value;
  }

  async decrement(amount = 1) {
    let value: number = (await this.ctx.storage.get('value')) || 0;
    value -= amount;
    await this.ctx.storage.put('value', value);
    return value;
  }
}

obj.getCounterValue should be an async function, but I got null instead. vscode intellisense tells me obj.getCounterValue has the type of never, so I assume hono messed something up during the process.

How to fix the error

this is the error message

TypeError [ERR_INVALID_ARG_TYPE]: The "strategy" argument must be of type object. Received type number (0)
at new ReadableStream (node:internal/webstreams/readablestream:254:5)
at safeReadableStreamFrom (/Users/hongling/hands-dirty/hono/examples/node_modules/miniflare/dist/src/index.js:8358:10)
at #handleLoopback (/Users/hongling/hands-dirty/hono/examples/node_modules/miniflare/dist/src/index.js:8520:36)
at Server.emit (node:events:531:35)
at parserOnIncoming (node:_http_server:1137:12)
at HTTPParser.parserOnHeadersComplete (node:_http_common:119:17) {
code: 'ERR_INVALID_ARG_TYPE'
}

my env

  • npm version 10,5,0
  • yarn version 3.2.1
  • wrangler 3.41.0

I can't seem to get "getMiniflareBindings()" to work?

In the blog example you can use getMiniflareBindings() to get access to the global env variables. I am trying to do the same thing in my project but can't replicate the functionality.

bindings.d.ts file:

export interface Bindings {
  ENV: string
  MYSQL_URL: string
  JWT_SECRET: string
  JWT_ACCESS_EXPIRATION_MINUTES: number
  JWT_REFRESH_EXPIRATION_DAYS: number
  JWT_RESET_PASSWORD_EXPIRATION_MINUTES: number
  JWT_VERIFY_EMAIL_EXPIRATION_MINUTES: number
}

declare global {
  function getMiniflareBindings(): Bindings
}

Trying to use it:

const env = getMiniflareBindings()

Error:

ReferenceError: getMiniflareBindings is not defined

build.js:

import { build } from 'esbuild'


try {
  await build({
      entryPoints: ['./src/index.ts'],
      bundle: true,
      outdir: './dist/',
      sourcemap: true,
      minify: true
    })
} catch(err) {
  process.exitCode = 1;
}

tsconfig.json:

{
  "compilerOptions": {
    "allowJs": true,
    "target": "esnext",
    "lib": ["esnext"],
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "inlineSourceMap": true,
    "module": "esnext",
    "esModuleInterop": true,
    "experimentalDecorators": true,
    "emitDecoratorMetadata": true,
    "strict": true,
    "noImplicitAny": true,
    "noEmit": true,
    "types": [
      "@cloudflare/workers-types",
      "@types/bcryptjs"
    ]
  },
  "ts-node": {
    "transpileOnly": true
  },
  "include": ["./src/**/*", "bindings.d.ts"]
}

Any idea what I am doing wrong?

Can not get KVNamespace Bindings by c.env.XX in the jsx-ssr example

Hi, I'm newer to hono and cloudflare workers. In the jsx-ssr example, I add some code to get value from the KV storage.

A error happens: TypeError: Cannot read properties of undefined (reading 'get').

And I out put the c.env and it is empty: {}.

Is there something wrong?

Troubleshooting Hono with Cloudflare Durable Objects Implementation Error

I'm currently working on integrating Hono with Cloudflare Durable Objects following this example: Hono Example. However, I've run into a snag and need some help troubleshooting.

My implementation, which is essentially a replica of the original example, can be found here: My Hono Implementation.

When I run the worker and send requests to port 8787 (where the worker runs, I have confirmed) I see 404 not found for all routes '/', '/increment', '/decrement'. What could be the reason? In general how else can I test if the do works?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.