GithubHelp home page GithubHelp logo

poyashad / display-aws-amplify-env-vscode-extension Goto Github PK

View Code? Open in Web Editor NEW
5.0 2.0 0.0 464 KB

This extension displays the current name of the local Amplify environment in the status bar of VS code. If you click on the extension in the status bar, you can change the environment graphically. This extension also notifies you with an information message when you change the environment.

Home Page: https://marketplace.visualstudio.com/items?itemName=poyashad.display-aws-amplify-environment

License: Other

TypeScript 100.00%
amplify amplify-cli aws awsamplify aws-amplify-environments

display-aws-amplify-env-vscode-extension's People

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

display-aws-amplify-env-vscode-extension's Issues

Change environment functionality

Hi @poyashad,

It would be great if the extension allows developers to change the active Amplify environment on their local machine! Thank you for the great work on this extension!

Using commands from the extension should not create a new terminal screen everytime

Hi @poyashad ,

It would be great if while using commands from the extension, that a new terminal screen would not be created every single time.

You can see in the source code it uses vscode.window.createTerminal to run the Amplify CLI. Instead maybe you could run the command as a child process of the extension.

import * as cp from "child_process";

const execShell = (cmd: string) =>
    new Promise<string>((resolve, reject) => {
        cp.exec(cmd, (err, out) => {
            if (err) {
                return reject(err);
            }
            return resolve(out);
        });
    });

Here is a Stackoverflow post with the same issue https://stackoverflow.com/questions/43007267/how-to-run-a-system-command-from-vscode-extension

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.