hono-feed
RSS, Atom and JSON Feed for Hono — done right.
File Explorer
- 1-bug-report.yml
- 2-feature-request.yml
- config.yml
- ci.yml
- pr-labeler.yml
- release.yml
- FUNDING.yml
- PULL_REQUEST_TEMPLATE.md
- icon.png
- logo.png
- checkbox-and-branch-labels-core.cjs
- checkbox-and-branch-labels.cjs
- conflict-label-core.cjs
- conflict-label.cjs
- get-pull-request.cjs
- recheck-labels-on-push.cjs
- print-coverage-path.mjs
- smoke.mjs
- discovery.test.ts
- index.ts
- atom.conformance.test.ts
- atom.test.ts
- atom03.ts
- atom10.ts
- author.ts
- identity.ts
- index.ts
- index.ts
- json.conformance.test.ts
- json.test.ts
- index.ts
- podcast.test.ts
- podcast.ts
- rdf-item.ts
- rss.conformance.test.ts
- rss.test.ts
- rss090.ts
- rss10.ts
- rss11.ts
- rss2.ts
- index.test.ts
- index.ts
- xml-roundtrip.conformance.test.ts
- index.ts
- middleware.test.ts
- index.ts
- renderer.test.ts
- author.test.ts
- author.ts
- cache-control.test.ts
- cache-control.ts
- date.test.ts
- date.ts
- deprecation.test.ts
- deprecation.ts
- enclosure.test.ts
- enclosure.ts
- etag.test.ts
- etag.ts
- hub.test.ts
- hub.ts
- mime.ts
- paging.test.ts
- paging.ts
- url.test.ts
- url.ts
- xml.test.ts
- xml.ts
- feed.test.ts
- feed.ts
- index.test.ts
- index.ts
- lint.test.ts
- lint.ts
- negotiate.test.ts
- negotiate.ts
- serve.test.ts
- serve.ts
- types.ts
- validate.test.ts
- validate.ts
- websub.test.ts
- websub.ts
- .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
jsDelivrjsDelivr 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 ▼
atom
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 ▼
complete
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 ▼
hub
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 ▼
link
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 ▼
next
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 ▼
npm install
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`:
