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 🙏

© 2025 – Pkg Stats / Ryan Hefner

cloud-ide-cli

v1.1.7

Published

The Cloud IDE CLI (Command Line Interface) is a powerful tool designed to streamline the process of initializing and managing projects within a cloud-based Integrated Development Environment. This command-line tool empowers developers to efficiently set u

Readme

cloud-ide-cli

The Cloud IDE CLI (Command Line Interface) is a powerful tool designed to streamline the process of initializing and managing projects within a cloud-based Integrated Development Environment. This command-line tool empowers developers to efficiently set up and configure projects for either API or UI development, offering a seamless experince

🌟 Introducing Cloud IDE CLI: Elevate Your Development Game! 💻✨

Ready to transform your development experience? Enter the world of Cloud IDE CLI, your ultimate solution for seamless project management! 🚀🔧

🌐 Effortless Project Initialization:

Execute cloud-ide new project_name node and witness instant project setup magic! Choose from various templates like Node.js, React, and more, simplifying project creation.

📦 Template-Based Generation:

Generate tailored files and dependencies aligned with your chosen template. From TypeScript setup to essential module installations, start projects effortlessly.

🔧 Flexible Folder Structure Updates:

Use cloud-ide update version_number to adapt folder structures based on template changes. Keep projects aligned with the latest standards seamlessly!

🌟 Key Features:

Streamlined Templating: Craft and utilize custom templates for project-specific needs. Automatic Git Integration: Sync and manage projects with Git effortlessly, minimizing manual effort. ⚙️ Join the Evolution:

Cloud IDE CLI simplifies project setup, ensures continuous updates, and enhances collaboration effortlessly! ⚡🚀

✨ Available on npm: Install via npm i -g cloud-ide-cli and embark on a journey of innovation! 🌐

🔄 Continuous Updates: We're committed to continuous improvements, ensuring you're equipped with the latest features for an enhanced development experience!

Ready to level up your development journey? Embrace Cloud IDE CLI and witness the power to build smarter, faster, and better projects! 💡✨

🚀 Build Command Usage

The Cloud IDE CLI now supports advanced build functionality for managing multiple Angular projects with dependencies:

Basic Build Command

cide build <project_name>

This command will:

  1. Navigate to the specified project directory
  2. Increment the patch version in package.json
  3. Run the appropriate build command based on the template
  4. Navigate to the dist folder
  5. Publish the built package

Build with Installation

cide build <project_name> --install
# or use the short form
cide build <project_name> -i

This command performs all the above steps plus: 6. Update the package in root directory's package.json dependencies

Supported Templates

  • Node.js: Uses npx tsc for building
  • React: Uses npm run build for building
  • Angular: Uses ng build --project <project_name> for building specific libraries/projects
  • Custom: Uses build_command from cide.json or defaults to npm run build <project_name>

Example Usage

# Build an Angular library without installing
cide build my-angular-library

# Build an Angular library and update it at root
cide build my-angular-library --install
# or
cide build my-angular-library -i

# Build a React project
cide build my-react-app

# Build a Node.js project
cide build my-node-service

Configuration

The build process respects the following cide.json configuration in your workspace root:

  • templete: Project template type (node, react, angular)
  • dist_path: Custom dist folder path (defaults to 'dist')
  • build_command: Custom build command override

Sample cide.json for Angular Workspace

{
  "name": "my-angular-workspace",
  "description": "Angular Workspace with Multiple Libraries",
  "templete": "angular",
  "version": "1.0.0",
  "dist_path": "dist",
  "build_command": "ng build --project"
}

Important: The cide.json file must be placed in your Angular workspace root directory (same level as angular.json and package.json).

#CloudIDE #CLI #DeveloperTools #ProjectManagement #CodingEfficiency #WorkflowOptimization