npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@yaegassy/coc-astro

v0.8.10

Published

Astro extension for coc.nvim

Downloads

368

Readme

coc-astro

fork from a astro-vscode

Astro extension for coc.nvim

Install

CocInstall:

:CocInstall @yaegassy/coc-astro

scoped packages

e.g. vim-plug:

Plug 'yaegassy/coc-astro', {'do': 'yarn install --frozen-lockfile'}

Note

Filetype related

The "filetype" must be astro for this extension to work.

Install "astro" related plugin. (e.g. vim-astro or nvim-treesitter).

How to set up TypeScript in your Astro project for coc.nvim

  1. You need coc-tsserver. Please install it if you haven't already.

  2. coc-astro has a setting to use @astrojs/ts-plugin in the extension as well as astro-vscode, so you can use typescript as it is.

[RECOMMENDED] Additional installation of "watchman"

In the @astrojs/language-server used by coc-astro, it utilizes the workspace/didChangeWatchedFiles notification to watch files within the project.

In coc.nvim, it is recommended to install watchman in order to utilize this feature.

If you have difficulty installing watchman, you can use coc-astro without watchman, but you may not be able to immediately use IntelliSense with the newly added files.

In this case, please execute the command to restart the language server.

  • :CocRestart

Dealing with text corruption when determining completion item

coc-astro provides a setting called astro.disableResolveCompletionItem. Set this setting to true in coc-settings.json. The default is false.

Please note that if this setting is set to true, feature such as "auto-import" upon completion item determination will not work.

coc-settings.json:

{
  "astro.disableResolveCompletionItem": true
}

Configuration options

  • astro.enable: Enable coc-astro extension, default: true
  • astro.disableResolveCompletionItem: Disable completionItem/resolve feature, default: false
  • astro.useWorkspaceTsdk: Use workspace (project) detected tsLibs in astro. if false, use coc-astro's built-in tsLibs, default: false
  • astro.language-server.ls-path: Path to the language server executable. You won't need this in most cases, set this only when needing a specific version of the language server, default: null
  • astro.language-server.runtime: Path to the node executable used to execute the language server. You won't need this in most cases, default: null
  • astro.trace.server: Traces the communication between coc.nvim and the language server, valid option: ["off", "messages", "verbose"], default: "off"

Commands

  • astro.findFileReferences: Astro: Find File References
  • astro.reloadProject: Astro: Reload Project

Thanks

License

MIT


This extension is built with create-coc-extension