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

fib-build

v5.0.0

Published

Build fibjs project to a standalone executable

Downloads

250

Readme

fib-build


Introduction

Deploying applications across various environments is a common challenge in software development. fib-build is a robust tool specifically designed for the fibjs environment, aimed at simplifying this process. It packages application directories into standalone executable files, making deployment and distribution of fibjs applications straightforward. With fib-build, developers can generate a single executable that encapsulates the entire application, including all dependencies and resource files. This eliminates the need for users to install fibjs separately, ensuring that the application can run seamlessly on different systems. By streamlining the deployment process, fib-build enhances efficiency and reduces the complexity associated with managing multiple environments.

Key Features

Comprehensive Single Executable File

fib-build excels in creating a comprehensive single executable file that encapsulates the entire fibjs application. This includes not only the core application logic but also all associated resource files and dependencies. By consolidating everything into one executable, fib-build eliminates the need for users to manage complex environmental setups or dependency installations. This feature significantly simplifies the deployment process, allowing users to run the application with a single command, regardless of the underlying system configuration.

Flexible Custom Base Executable Program

One of the standout features of fib-build is its flexibility in specifying the base executable program. Users have the option to use the current fibjs executable as the default base file or to specify a different executable tailored to various operating systems and architectures. This customization capability ensures that the packaged application can meet diverse deployment requirements, enhancing its adaptability and usability across different environments. Whether targeting Windows, macOS, or Linux, fib-build provides the tools necessary to create a compatible and efficient executable.

Robust Cross-Platform Compatibility

While it is generally recommended to generate executables on the target operating system to avoid compatibility issues, fib-build supports cross-platform packaging. This feature is particularly beneficial for developers working in macOS environments, as it ensures the stability and compatibility of the executable files on macOS systems. By leveraging fib-build's cross-platform capabilities, developers can streamline their workflow and reduce the overhead associated with managing multiple development environments. This makes fib-build an invaluable tool for teams aiming to deploy applications across various platforms seamlessly.

Automatic Downgrade for Compatibility

By default, fib-build merges the executable file and packaged files using embedded resources. However, on certain platforms (such as Linux MIPS, Linux Loong64, Alpine ARM64, etc.), this method may encounter compatibility issues. To address this, fib-build automatically detects these incompatible platforms during the packaging process. When targeting these platforms, it will automatically downgrade to the traditional mode, appending the packaged files to the end of the executable. This ensures better compatibility and reliability across diverse environments, making the deployment process smoother and more robust.

Installation Steps

Before starting with fib-build, ensure that fibjs is installed on your system. If it is not installed, please visit the fibjs Installation Guide to set up the environment. Once fibjs is installed, navigate to your project directory and install fib-build using the following command:

cd your-project-directory
fibjs --install fib-build

Usage

Once installed, fib-build can be utilized via the command-line interface to package fibjs applications. The basic usage is as follows:

fibjs fbuild <folder> <outfile>

Parameter Description

  • <folder>: Directory containing the fibjs application. This is the root directory where your application code resides. Typically, this is the current directory (.), but you can also specify a different directory to handle other projects.
  • <outfile>: Required. Path where the executable file should be saved. It is recommended not to save the output file in the project directory to avoid including it in the next packaging process. This specifies the output location and name of the generated executable.

Optional Parameters

  • --execfile=<file>: Specify the base executable file, such as a specific fibjs binary. By default, it uses the executable that is currently running. This option allows you to customize the base binary used for packaging, which can be useful for compatibility with different operating systems or specific versions of fibjs.

  • --legacy: Use legacy mode to append data to the end of the outfile. This is useful when the embedded resource mode encounters compatibility issues on some platforms. By using the append method for packaging, you can ensure better compatibility across different environments.

  • --gui: Enable GUI mode. When this option is specified, the packaging process will set the subsystem of the executable to GUI on Windows. On macOS, it will automatically package the application as a bundle. This is particularly useful for applications that require a graphical user interface, ensuring that the executable behaves correctly on different operating systems.

  • --overwrite: Overwrite the output file if it exists. This option allows you to force the creation of the output file even if a file with the same name already exists, preventing errors related to file existence.

These parameters ensure that the packaging process is flexible and can be tailored to different deployment needs, making it easier to create optimized and portable fibjs applications.

Application Examples

Packaging a Simple fibjs Application

To package a simple fibjs application, assume you are in the project directory that contains your fibjs application. You want to create an executable named myAppExecutable. You can achieve this by running the following command in your terminal:

cd your-project-directory
fibjs fbuild . ../myAppExecutable

This command will package the contents of the current directory into an executable file named myAppExecutable.

Using a Specified fibjs Executable

In some cases, you might want to use a different fibjs binary as the base for your executable. This can be useful for ensuring compatibility with different operating systems or architectures. To specify a different fibjs binary, use the --execfile option:

cd your-project-directory
fibjs fbuild . ../myAppExecutable --execfile=path/to/other/fibjs

This command will package the current directory into an executable named myAppExecutable, using the specified fibjs binary located at path/to/other/fibjs.

Using Legacy Mode

If you encounter compatibility issues with the embedded resource mode on some platforms, you can use the --legacy option to append data to the end of the outfile:

cd your-project-directory
fibjs fbuild . ../myAppExecutable --legacy

This command will package the contents of the current directory into an executable file named myAppExecutable using the legacy mode.

Enabling GUI Mode

If your application requires a graphical user interface, you can use the --gui option to enable GUI mode. On Windows, this will set the subsystem of the executable to GUI. On macOS, it will automatically package the application as a bundle. When packaging as a bundle on macOS, fbuild will use the basic information from package.json to create the bundle. By default, fbuild will set a default icon for the bundle. If you want to specify a custom icon, you can add an icon field in your package.json pointing to your custom icon file.

Example command:

cd your-project-directory
fibjs fbuild . ../myAppExecutable --gui

Example package.json:

{
  "name": "myApp",
  "version": "1.0.0",
  "description": "My fibjs application",
  "main": "index.js",
  "author": "Your Name",
  "license": "MIT",
  "icon": "path/to/custom/icon.icns"
}

This command will package the contents of the current directory into an executable file named myAppExecutable with GUI mode enabled. On macOS, it will create a bundle using the information from package.json and set the custom icon specified in the icon field.

File Ignore Rules

During the build process, fib-build optimizes the packaging by excluding certain files. Specifically, it ignores:

  • Files within directories that start with a dot (.), such as .git or .env.
  • Files located in the fib-build module directory.
  • Files located in the fib-inject module directory.

You can add an ignore field in your package.json to specify additional files or directories to be excluded. The ignore field can be a string or an array of strings. The patterns used in the ignore field follow the same syntax as .gitignore.

Example package.json:

{
  "name": "myApp",
  "version": "1.0.0",
  "description": "My fibjs application",
  "main": "index.js",
  "author": "Your Name",
  "license": "MIT",
  "ignore": [
    "path/to/ignore1",
    "path/to/ignore2",
    "*.log",
    "node_modules/"
  ]
}

This selective exclusion ensures that only essential components are included in the final executable, resulting in a cleaner and more efficient package. By omitting unnecessary files, fib-build creates a lightweight and performant executable ready for deployment across various environments.

Common Issues and Solutions

Execution Failure on macOS

If an executable targeted for macOS is created on non-macOS platforms, it might fail when run on macOS. This issue often arises because the application is not properly signed when packaged on other operating systems. macOS requires applications to be signed to ensure security and integrity. Packaging on a macOS machine ensures that the application is correctly signed, preventing execution failures and security warnings.

If you encounter this issue, you can try manually signing the application using the following command:

codesign -s - myAppExecutable

This command signs the myAppExecutable, which can help resolve execution failures and security warnings on macOS.

Output File in Project Directory

If the outfile parameter is set to a path within the project directory, the generated executable will be included in the next packaging process. This can significantly increase the size of the packaged software. To avoid this issue, it is recommended to specify an output path outside the project directory. For example:

fibjs fbuild <folder> ../myAppExecutable

This ensures that the executable is saved outside the project directory, preventing it from being included in subsequent packaging operations.

Compression of Application

To reduce the size of your application, you can inspect the output of fbuild. During the build process, fbuild highlights files larger than 16k in red and files larger than 4k in yellow. By reviewing these larger files, you can determine if they are necessary for runtime. If they are not required, you can delete them and repackage the application. This process helps in creating a more compact and efficient executable.

Additionally, you can use the ignore field in your package.json to exclude unnecessary files from the packaging process. The ignore field supports pattern matching similar to .gitignore, allowing you to specify files or directories to be excluded. This can significantly reduce the size of the final executable.

Example package.json with ignore field:

{
  "name": "myApp",
  "version": "1.0.0",
  "description": "My fibjs application",
  "main": "index.js",
  "author": "Your Name",
  "license": "MIT",
  "icon": "path/to/custom/icon.icns",
  "ignore": [
    "path/to/ignore1",
    "path/to/ignore2",
    "*.log",
    "node_modules/"
  ]
}

By specifying unnecessary files in the ignore field, you can ensure they are not included in the final package, resulting in a more efficient and smaller executable.

Platform Compatibility Issues

Although fbuild automatically detects platform compatibility and chooses a fallback option to continue packaging, unforeseen compatibility issues may still occur. If the packaged file crashes or does not run as expected, you can manually add the --legacy option to force fbuild to use the traditional packaging mode:

fibjs fbuild <folder> ../myAppExecutable --legacy

This can help resolve issues where the packaged application does not run correctly on certain platforms.

Performance Considerations

While packaging simplifies the deployment process, it is important to note that the initial loading time of the executable might increase due to the need to unpack and deploy files at runtime. To mitigate this, consider optimizing the application’s startup process and minimizing the number of files that need to be unpacked.

Conclusion

fib-build is a potent tool that eases the deployment process of fibjs applications, enabling developers to effortlessly distribute and execute them in different environments. Following the steps and recommendations provided can optimize the application’s deployment process and enhance its applicability across various environments.

For more detailed information and advanced features, please refer to the official fibjs documentation. Through these resources, developers can gain a deeper understanding of how to effectively utilize fib-build to enhance the portability and usability of their applications. This guide outlines the steps for installation, usage, and addresses common issues with solutions to ensure a smooth application packaging process. Whether you are a seasoned developer or a newbie to fibjs, understanding the capabilities and features of fib-build will significantly benefit the workflow and distribution of your applications.