JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 4
  • Score
    100M100P100Q33197F
  • License SEE LICENSE IN LICENSE

Quickly locates the code you need to edit. Optimizes the frontend development workflow.

Package Exports

  • quick-edits
  • quick-edits/browser-extension/start.sh

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (quick-edits) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Quick Edits 🚀

Quickly locates the code you need to edit. Optimizes the frontend development workflow.

Usage

Provides a quick way to test TailwindCSS classes and jump to the code you need to edit.

How to use popup

Extension Settings

Offers a few settings to configure the project code folder that includes the code you want to search through and an editor select box.

Extension settings popup

Installation

Quick Install 🚀

Follow the docs to follow the quick install guide.

Manual Installation

If you're on MacOS simply start the new ./start.sh command and it'll attempt to configure it for you. Otherwise continue with this installation.

Chrome Extension

Install and build Chrome Extension.

  cd browser-extension
  npm install --legacy-peer-deps
  npm run build

Native Code Search Module

  cd native-module
  go install
  go build
MacOS Config
  cd /Library/Google/Chrome/NativeMessagingHosts
  sudo touch com.my_company.my_application.json

Add this as content of com.my_company.my_application.json

{
  "name": "com.my_company.my_application",
  "description": "Quick Edits",
  "path": "/absolute/path/to/built/go/module/m",
  "type": "stdio",
  "allowed_origins": ["chrome-extension://yourchromeextensionid/"]
}