iamcco / markdown-preview.nvim

markdown preview plugin for (neo)vim
MIT License
6.82k stars 284 forks source link

Node js version #589

Closed System3-2 closed 1 year ago

System3-2 commented 1 year ago

Describe the bug i installed then run :MarkdownPreview and i get this message(below) but it does'nt lauch the markdown preview server image

To Reproduce Steps to reproduce the behavior:

  1. Go to '...'
  2. Click on '....'
  3. Scroll down to '....'
  4. See error

Expected behavior A clear and concise description of what you expected to happen.

Screenshots If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

Log:

joshgubler commented 1 year ago

I ran into this because I didn't have yarn installed, so the plugin install hadn't finished. I fixed it with:

brew install yarn
cd ~/.vim/plugged/markdown-preview.nvim/app/
yarn install

Or just uninstall and re-install the plugin after installing yarn.

System3-2 commented 1 year ago

I ran into this because I didn't have yarn installed, so the plugin install hadn't finished. I fixed it with:

brew install yarn
cd ~/.vim/plugged/markdown-preview.nvim/app/
yarn install

Or just uninstall and re-install the plugin after installing yarn.

It's working now thanks