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

@polymer-tools/editor-service

v2.2.2

Published

Static analysis for the web in your text editor!

Downloads

5

Readme

polymer-editor-service

Static analysis for web components in your text editor of choice!

Editor plugins

These editor plugins use the editor service:

  • Atom: https://github.com/Polymer/atom-plugin
  • VSCode: https://github.com/Polymer/vscode-plugin
  • Sublime Text: docs/sublime.md

More Information

The Editor Service exposes the power of the analyzer as a standalone service for text editor integration.

Supporting a new editor.

As long as the editor supports the Language Server Protocol (LSP), it should be easy to get it to work with the polymer editor service. When the editor service is installed via npm it exposes a binary named polymer-editor-service.

This binary speaks the LSP over stdin/stdout.

If you have an editor that supports LSP, or a plugin that adds LSP support, you can configure it to use the Editor Service. You'll typically just need to configure it with:

  • The path to the polymer-editor-service binary.
  • A list of file types that that the service supports (in this case, HTML, CSS, JavaScript and JSON files).

See the wiki page for sublime text support for an example: https://github.com/Polymer/polymer-editor-service/wiki/Sublime-Text

There are also several ways to configure logging, which is very helpful when hooking up an editor for the first time. The simplest is to pass in --logToFile PES.txt when starting the editor service, but it also supports configuring logging at runtime. Logging can also be configured at runtime, see below for more info.

Configuration options

The editor service supports the following configuration options, via the workspace/didChangeConfiguration notification. These configuration options should be exposed to the user through the client's configuration interface.

All options are optional, and they're within the polymer-ide namespace. So an example of valid params to workspace/didChangeConfiguration would be:

{
  "settings": {
    "polymer-ide": {
      "analyzeWholePackage": true,
      "fixOnSave": true
    }
  }
}

analyzeWholePackage

default: false

When true, warnings will be reported for all files in the package, not just those that are open. Not recommended for larger projects until https://github.com/Polymer/polymer-analyzer/issues/782 is resolved.

enableReferencesCodeLens

default: false

When true, we will report the number of references at the definitions of symbols as Code Lenses. Note that this will have a performance impact similar to analyzeWholePackage.

fixOnSave

default: false

When true, all warnings that can be safely and automatically fixed will be fixed on save.

This requires the client to support the textDocument/synchronization/willSaveWaitUntil and workspace/applyEdit capabilities.

logToClient

default: false

When true, will send debug logs to the client via window/logMessage notifications. The debug logs have information on performance and file synchronization, among other info.

logToFile

default value: null

When set, will write debug logs to the file at this path. The debug logs have information on performance and file synchronization, among other info.