Go to file
2024-07-18 19:38:12 +00:00
test nodejs.prov: find namespaced bundled dependencies 2022-01-20 12:24:09 +01:00
.gitignore Make dist-git the upstream repo 2020-09-18 15:50:14 -04:00
changelog Update version and switch to rpmautospec 2023-03-10 10:57:08 -05:00
LICENSE Make dist-git the upstream repo 2020-09-18 15:50:14 -04:00
macros.nodejs Set correct %nodejs_sitelib path 2023-03-10 10:37:32 -05:00
multiver_modules Make dist-git the upstream repo 2020-09-18 15:50:14 -04:00
nodejs_abi.attr Move native module building tools here from Node.js 2022-10-20 10:00:18 -04:00
nodejs_abi.req The Node.js ABI version is now represented by the NODE_MODULE_VERSION 2023-03-10 10:09:57 -05:00
nodejs-fixdep Make dist-git the upstream repo 2020-09-18 15:50:14 -04:00
nodejs-packaging-bundler Bundler: Update to modern npm arguments 2023-03-10 09:44:24 -05:00
nodejs-packaging.spec Fix build with rpm 4.20 2024-06-21 15:18:06 -04:00
nodejs-setversion Make dist-git the upstream repo 2020-09-18 15:50:14 -04:00
nodejs-symlink-deps Make dist-git the upstream repo 2020-09-18 15:50:14 -04:00
nodejs.attr Restrict autoprovides and requires to top-level 2023-10-26 10:04:04 -04:00
nodejs.prov nodejs.prov: find namespaced bundled dependencies 2022-01-20 12:24:09 +01:00
nodejs.req Make dist-git the upstream repo 2020-09-18 15:50:14 -04:00
README.md Drop instructions for upgrading node pkg 2023-04-27 11:44:13 -04:00
sources Make dist-git the upstream repo 2020-09-18 15:50:14 -04:00

How to bundle nodejs libraries in Fedora

The upstream Node.js stance on global library packages is that they are ".. best avoided if not needed." In Fedora, we take the same stance with our nodejs packages. You can provide a package that uses nodejs, but you should bundle all the nodejs libraries that are needed.

We are providing a sample spec file and bundling script here.
For more detailed packaging information go to the Fedora Node.js Packaging Guildelines

Bundling Script

nodejs-packaging-bundler <npm_name> [version] [tarball]

nodejs-packaging-bundler is it's own package, nodejs-packaging-bundler and must be installed before use.
nodejs-packaging-bundler gets the latest npm version available, if no version is given, or uses the existing tarball if one is given. Using npm is preferred for to ease reproducibility. If a local tarball is required (e.g. because the package is missing from npm or its version is too old), please ensure to document how the tarball was created. It produces four files and puts them in ${HOME}/rpmbuild/SOURCES

  • <npm_name>-.tgz - This is the tarball from npm.org
  • <npm_name>--nm-prod.tgz - This is the tarball that contains all the bundled nodejs modules <npm_name> needs to run
  • <npm_name>--nm-dev.tgz - This is the tarball that contains all the bundled nodejs modules <npm_name> needs to test
  • <npm_name>--bundled-licenses.txt - This lists the bundled licenses in <npm_name>--nm-prod.tgz

Sample Spec File

%global npm_name my_nodejs_application
...
License:  <license1> and <license2> and <license3>
...
Source0:  http://registry.npmjs.org/%{npm_name}/-/%{npm_name}-%{version}.tgz
Source1:  %{npm_name}-%{version}-nm-prod.tgz
Source2:  %{npm_name}-%{version}-nm-dev.tgz
Source3:  %{npm_name}-%{version}-bundled-licenses.txt
...
BuildRequires: nodejs-devel
...
%prep
%setup -q -n package
cp %{SOURCE3} .
...
%build
# Setup bundled node modules
tar xfz %{SOURCE1}
mkdir -p node_modules
pushd node_modules
ln -s ../node_modules_prod/* .
ln -s ../node_modules_prod/.bin .
popd
...
%install
mkdir -p %{buildroot}%{nodejs_sitelib}/%{npm_name}
cp -pr index.js lib package.json %{buildroot}%{nodejs_sitelib}/%{npm_name}
# Copy over bundled nodejs modules
cp -pr node_modules node_modules_prod %{buildroot}%{nodejs_sitelib}/%{npm_name}
...
%check
%nodejs_symlink_deps --check
# Setup bundled dev node_modules for testing
tar xfz %{SOURCE2}
pushd node_modules
ln -s ../node_modules_dev/* .
popd
pushd node_modules/.bin
ln -s ../../node_modules_dev/.bin/* .
popd
# Example test run using the binary in ./node_modules/.bin/
./node_modules/.bin/vows --spec --isolate
...
%files
%doc HISTORY.md
%license LICENSE.md %{npm_name}-%{version}-bundled-licenses.txt
%{nodejs_sitelib}/%{npm_name}