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

vue-cli-plugin-easycloud

v0.1.2

Published

A vue cli plugin to manage client development for easy cloud platform

Downloads

468

Readme

Start create your client with EASY Cloud Platform in seconds.

Installation

  • Yarn is strongly recommended instead of npm.
  • Vue CLI 3 plugin for EASY Cloud Platform.

Install with Vue UI

  1. Navigate in your project to the plugin section.
  2. Click add plugin button.
  3. Search for easycloud.
  4. Select vue-cli-plugin-easycloud.
  5. Click Install vue-cli-plugin-easycloud button.

Install on terminal with vue cli

  • Open terminal amd take sure you are in the root of your vue project
# add plugin with vue
vue add vue-cli-plugin-easycloud

New files after installation

  • cfw.config.js - client framework configuration file (root of the project)
module.exports = {
  
  /**
   * hostname of your backend system
   */
  host: '',
  
  /**
   * customer name of the account
   */
  customer: '',
  
  /**
   * user or email address of a registered user
   */
  user: '',
  
  /**
   * password of the registered user
   */
  password: '',
  
  /**
   * selected backend application
   */
  app: '',
};

Changed files after installation

  • .gitignore - add cfw.config.js` file to avoid commit of credentials;-)
  • packages.json - add "sdk" : "vue-cli-service sdk" in script section

Quick Setup Guide

New menu item in configuration

After successfully installing the plugin, you should see a new entry (EASY Cloud Platform) in vue ui configuration section. Please fill in all fields and save. After login the view will be refreshed and a new list selection appears. Now you can choose which platform application you want to use in your project.

New menu item in tasks

Also a new entry sdk in the tasks section was added. For this task you can specify following parameters:

  • sdk language you want to download (currently javascript, backbone and typescript are supported)
  • platform system of the application (you can choose between test, staging and live)

After running the task you can find the sdk in src/lib directory

FEATURES & ISSUES

To suggest a feature or report a bug: https://github.com/stephanbit/vue-cli-plugin-easycloud/issues

https://github.com/stephanbit/vue-cli-plugin-easycloud/blob/master/README.md