Finally built a vscode extension

danielshow

Daniel Shotonwa

Posted on June 16, 2020

Finally built a vscode extension

I have been thinking of building a vscode tool and finally published one.

It is an extension used for automating the process of adding a line of variable to .env and sample-env file, instead of copying and pasting.

const KEY = "MysecretKey"; 

Right click on the line
Click on Add Line to env

The line will change to:
const KEY = process.env.KEY

The env and sample-env file will also be populated

Install here: https://marketplace.visualstudio.com/items?itemName=danielshow.autoenv&ssr=false

Check out the repo here:
https://github.com/Danielshow/autoenv

Kindly help install on vscode. it means a lot. Thanks

I will put up an article on how I built it.

💖 💪 🙅 🚩
danielshow
Daniel Shotonwa

Posted on June 16, 2020

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

Finally built a vscode extension