I\'m developing on windows, but need to know how to convert a windows path (with backslashes \\) into a POSIX path with forward slashes (/)?
\\
/
There is node package called upath will convert windows path into unix.
upath = require('upath');
or
import * as upath from 'upath'; upath.toUnix(destination_path)