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

wstart

v1.0.1

Published

Run Windows commands on Bash on Ubuntu on Windows

Downloads

5

Readme

wstart

NPM MIT

wstart is Node.js package that allow you to run Windows command from Bash on Ubuntu on Windows.

wstart is constituted with server and client. On Windows it runs as server, on Bash it runs as client.

Can open Windows applications in new window from Bash, or run Windows commands inside Bash.

Requirements

  • Windows 10
  • Bash on Ubuntu on Windows
  • Node.js (>=4.0.0)

In this document, "Bash" referes "Bash on Ubuntu on Windows"

Installation

Node.js must be insalled both on Windows and Bash.

on Bash:

Specify your Windows username at <WINUSERNAME>.

sudo apt-get update
sudo apt-get install openssl -y
npm install -g wstart
wstart-init <WINUSERNAME>

on Windows:

npm install -g wstart

Running wstart command

wstart must be running on Windows in order to use wstart command on Bash.

On Bash, wstart can be used in the following two ways:

In New Window

wstart cmd can run cmd.exe in new window.

Because it internally calls start command, you can type wstart . to run cmd.exe, or type wstart /mnt/c and wstart ~/ to open C drive and lxss home directory in Windows Explorer.

  • Linux style path will be automatically converted to Windows path. To learn more, see Path conversion.
  • To learn Windows start command, run start /? on cmd.exe.

Inside Bash

By using exclamation mark (!) like wstart ! cmd, can run commands inside Bash.

  • In Vim, note that ! must be escaped like :!wstart \! cmd.

Path conversion

This package has path conversion between Windows and Ubuntu.

For example, wstart echo ~/ will says C:\Users\YourName, wstart echo /mnt/c/Windows will says C:\Windows, and so forth.

This is convenient, but might be unexpected in some case.

To surpress this, use atmark(@) as prefix for each parameters. (eg. wstart echo @/mnt/c says /mnt/c)

If want to pass parameter that start with atmark, must enter atmark twice. (eg. wstart echo @@/mnt/c says @/mnt/c)

Security

server and client will communicate under local only TLS connection with key-based authorization.

Generally it is safe, but might become a unexpected backdoor.

I recommend to close server if not required.

Changing Port

Port 62000 is used by default, you can change it via the following configuration file.

  • ~/.wstart/wstart.json (Bash)
  • %USERPROFILE%/.wstart/wstart.json (Windows)

Uninstallation

Run npm uninstall -g wstart on both environments.

License

Distributed under the MIT license.

Copyright (C) 2016 Retorillo