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

luucy-cli

v6.5.0

Published

[![NPM Version](https://img.shields.io/npm/v/luucy-cli?style=flat-square&color=00894D&logo=npm&label=luucy-cli&labelColor=white)](https://www.npmjs.com/package/luucy-cli)

Downloads

44

Readme

NPM Version

LUUCY Command Line Interface

Developer tools for LUUCY app development.

Installing

To install luucy-cli, make sure you have nodejs and npm installed on your system.

Then type the following command in your terminal to install luucy-cli:

npm install -g luucy-cli

From here you can use the command line interface by typing luucy in a terminal.

Starting a project

Open a terminal and type the following command to create a new app:

luucy create

Luucy CLI will create all required files after asking you for a name and an author. Now open up the project in your favorite text editor and start exploring.

App anatomy

A LUUCY app contains the following files by default:

my-app
|-- plugin.ts           start here (main app source file)
|-- assets              media assets, e.g. icon
|   `-- icon.svg        icon for your plugin
|-- package.json        package configuration
`-- tsconfig.json       TypeScript configuration (don't touch)

Run your app locally

To run your LUUCY app use:

luucy serve

This will automatically start a debugging session. Open the link provided in the terminal output to see your app in action.

Console output like errors will appear in the terminal where you started the app as well the browser console.

Any changes to your code will automatically hot reload the app.

Resources

For documentation on the SDK itself, see sdk.luucy.ch.

To see available luucy-cli commands use

luucy help

     · ·        __
   · + + ·     / /_  ____  _________  __
   + + + +    / / / / / / / / ___/ / / /
   + + + +   / / /_/ / /_/ / /__/ /_/ /
   · + + ·  /_/\__,_/\__,_/\___/\__, /
     · ·    v6.3.0             /____/

luucy create            Creates an empty plugin locally
luucy serve             Debug plugin locally
    --test              Launch debugger for http://localhost:4200 (test environment)
    --staging           Launch debugger for https://staging.luucy.ch (staging environment)
    --productive        Launch debugger for https://app.luucy.ch (productive environment)
luucy build             Build a plugin
    [--dry]             Dry run without creating a bundle. Useful for checking for compilation errors
luucy publish           Publish a plugin to the luucy marketplace
    [{version}]         New version name. Typically an increment of semantic version (e.g. 1.0.1)
luucy upgrade           Upgrades the luucy type mappings
    --next [{branch}]   Upgrades to next version, for testing only
luucy scope             Manage luucy scopes
    add {scope}         Adds a new scope
    list                Lists all available scopes
    build               Rebuilds definitions
luucy add               Add a new scope (shorthand for luucy scope add)
    {scope}             Scope name. Use luucy scope list to view all available scopes
luucy help              Prints this help page

Feature Requests

Got an idea? Feel free to open an issue and get in touch.