From f4b6e43127cbcde2f5d4af04bff09af9a7e5d439 Mon Sep 17 00:00:00 2001 From: Jeroen Ooms Date: Wed, 3 Nov 2021 17:07:13 +0100 Subject: [PATCH] Fix URL --- README.md | 2 +- vignettes/npm.Rmd | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4fbd9ed..20769b2 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ makepkg -si ### Debian / Ubuntu -Installation from source on Linux requires [`libv8`](https://developers.google.com/v8/intro). On Ubuntu / Debian you need to install either [libv8-dev](https://packages.ubuntu.com/bionic/libv8-dev), or [libnode-dev](https://packages.ubuntu.com/eoan/libnode-dev). On the latest systems, `libv8-dev` is actually an alias for `libnode-dev` so they are the same: +Installation from source on Linux requires [`libv8`](https://v8.dev/). On Ubuntu / Debian you need to install either [libv8-dev](https://packages.ubuntu.com/bionic/libv8-dev), or [libnode-dev](https://packages.ubuntu.com/eoan/libnode-dev). On the latest systems, `libv8-dev` is actually an alias for `libnode-dev` so they are the same: ```sh # Debian and Ubuntu diff --git a/vignettes/npm.Rmd b/vignettes/npm.Rmd index ed6767a..9389536 100644 --- a/vignettes/npm.Rmd +++ b/vignettes/npm.Rmd @@ -59,7 +59,7 @@ If no bundle is available for your library, you might be able to create one from ![browserify logo](http://jeroen.github.io/V8/browserify.png) -[Browserify](http://browserify.org/) is a tool to bundle an npm package with all of its dependencies into a single js file that does not require disk access. It is mainly designed to make npm packages suitable for use on a webpage but it is useful with embedded V8 as well. +[Browserify](https://browserify.org/) is a tool to bundle an npm package with all of its dependencies into a single js file that does not require disk access. It is mainly designed to make npm packages suitable for use on a webpage but it is useful with embedded V8 as well. ## Browserify example: js-beautify