hono-feed

(★ 26)

RSS, Atom and JSON Feed for Hono — done right.

File Explorer

  • .gitattributes
  • .gitignore
  • biome.json
  • CONTRIBUTING.md
  • HONOFEED_DEP.md
  • LICENSE
  • package.json
  • pnpm-lock.yaml
  • pnpm-workspace.yaml
  • README.md
  • tsconfig.json
  • tsup.config.ts
  • vitest.config.ts

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

atom

View Details ▼

A cross-platform pluggable text editor.
Plugins are managed by `apm`.
Note: Atom has been sunsetted and is no longer actively maintained. Use `zed` instead.

atom {{path/to/file_or_directory}}

Open a file or directory:

atom {{[-n|--new-window]}} {{path/to/file_or_directory}}

Open a file or directory in a new window:

atom {{[-a|--add]}} {{path/to/file_or_directory}}

Open a file or directory in an existing window:

🔍

complete

View Details ▼

Get and set argument autocompletion rules of shell commands in Bash.
The specified completions will be invoked when `<Tab>` is pressed in Bash.
See also: `compgen`, `compopt`.

complete -F {{function}} {{command}}

Set arguments of a command to autocomplete through a function (completion response is sent in `$COMPREPLY` variable):

complete -C {{autocomplete_command}} {{command}}

Set arguments of a command to autocomplete through another command (`$1` is the command, `$2` is the argument the cursor is on, and `$3` is the argument preceding the cursor):

complete -b {{command}}

Set arguments of a command to autocomplete to shell builtins:

🔍

hub

View Details ▼

A wrapper for Git that adds commands for working with GitHub-based projects.
If set up as instructed by `hub alias`, one can use `git` to run `hub` commands.

hub clone {{username}}/{{repo_name}}

Clone a repository using its slug (owners can omit the username):

hub fork

Create a fork of the current repository (cloned from another user) under your GitHub profile:

hub push {{remote_name}} && hub pull-request

Push the current local branch to GitHub and create a PR for it in the original repository:

🔍

link

View Details ▼

Create a hard link to an existing file.
For more options, see the `ln` command.

link {{path/to/existing_file}} {{path/to/new_file}}

Create a hard link from a new file to an existing file:

🔍

next

View Details ▼

React framework that uses server-side rendering for building optimized web applications.

next dev

Start the current application in development mode:

next dev {{[-p|--port]}} {{port}}

Start the current application and listen on a specific port:

next build

Build the current application optimized for production:

🔍

npm install

View Details ▼

Install Node packages.

npm {{[i|install]}}

Install dependencies listed in `package.json`:

npm {{[i|install]}} {{package_name}}@{{version}}

Download a specific version of a package and add it to the list of dependencies in `package.json`:

npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}

Download the latest version of a package and add it to the list of dev dependencies in `package.json`:

// repository documentation