HTML JPG PDF XML DOCX
  Product Family
PDF

Convert PDF to EPUB via Cloud Node.js SDK

Export PDF documents to multiple formats including EPUB with Aspose.PDF Cloud Node.js SDK

Get Started

How to Convert PDF to EPUB Using Node.js SDK

To convert PDF to EPUB, we’ll use Aspose.PDF Cloud Node.js SDK This Cloud SDK SDK assists Node.js programmers in developing cloud-based PDF creator, annotator, editor, and converter apps using Node.js programming language via Aspose.PDF REST API. Open NPM package manager, search for Aspose.PDF Cloud, and install. You may also use the following command from the Package Manager Console.

Package Manager Console Command


     
    npm install asposepdfcloud --save
     
     

Steps to Convert PDF to EPUB via Node.js

Aspose.PDF Cloud Node.js developers can easily load & convert PDF files to EPUB in just a few lines of code.

  1. Load your Application Secret and Key from the JSON file or set credentials in another way
  2. Create an object to connect to the Cloud API
  3. Upload your document file
  4. Perform the conversion using getPdfInStorageToEpub
  5. Download the result if needed it

System Requirements

It is easy to get started with Aspose.PDF Cloud Node.js SDK and there is nothing to install. Simply create an account at Aspose for Cloud and get your application information. Once you have the App SID & key, you are ready to give the Aspose.PDF Cloud Node.js SDK.

  • CPU: 1GHz
  • RAM: 512Mb
  • Free space on disk: 20Mb
  • Any OS Microsoft Windows, Mac OS, Linux x32/x64
  • node.js v4.8 or higher

 

This sample code shows PDF to EPUB Cloud Node.js SDK Conversion


    const fs = require("fs");
    const credentials = require("./credentials.json");
    const { PdfApi } = require("asposepdfcloud");

    // Load your Application Secret and Key from the JSON file or set credentials in another way
    async function convertPDFtoEPUB() {
        const localFileName = "C:\\Samples\\sample.pdf";
        const storageFileName = "sample.pdf";
        const pdfApi = new PdfApi(credentials.id, credentials.key);
        let fileData = await fs.readFile(localImageFileName);
        try {
            let uploadResult = await pdfApi.uploadFile(storageFileName, fileData);
            console.log(uploadResult.response.text);
        }
        catch (error) {
            console.error(error.response.text);
        }

        try {
            let convertResult = await pdfApi.getPdfInStorageToEpub(storageFileName);
            fs.writeFileSync("sample.epub", convertResult.body);
            const buffer = await pdfApi.downloadFile(STORAGE_FILENAME);
        } catch (error) {
            console.error(error.response.text);
        }
    }
 
  •  

    Free App to Convert PDF to EPUB

    Check our live demos for PDF to EPUB conversion with following benefits.

      No need to download or setup anything.
      No need to write any code.
      Just upload your PDF file and hit the "Convert" button.
      You will instantly receive a link to download the result.

    About Aspose.PDF Cloud Node.js SDK

    Aspose.PDF Cloud is a true REST API that enables you to perform a wide range of document processing operations including creation, manipulation, conversion and rendering of PDF documents in the cloud.

    Our Cloud SDKs are wrappers around REST API in various programming languages, allowing you to process documents in language of your choice quickly and easily, gaining all benefits of strong types and IDE highlights. This repository contains new generation SDKs for Aspose.PDF Cloud and examples.

    These SDKs are now fully supported. If you have any questions, see any bugs or have enhancement request, feel free to reach out to us at Free Support Forums.

    PDF What is PDF File Format

    Portable Document Format (PDF) is a type of document created by Adobe back in 1990s. The purpose of this file format was to introduce a standard for representation of documents and other reference material in a format that is independent of application software, hardware as well as Operating System. PDF files can be opened in Adobe Acrobat Reader/Writer as well in most modern browsers like Chrome, Safari, Firefox via extensions/plug-ins. Most of the commercially available software suites also offer conversion of their documents to PDF file format without the requirement of any additional software component. Thus, PDF file format has full capability to contain information like text, images, hyperlinks, form-fields, rich media, digital signatures, attachments, metadata, Geospatial features and 3D objects in it that can become as part of source document.

    Read More

    EPUB What is EPUB File Format

    Files with .EPUB extension are an e-book file format that provide a standard digital publication format for publishers and consumers. The format has been so common by now that it is supported by many e-readers and software applications. For example, on Mac OS, the pre-installed Books software provides the support for opening such files. In addition, there are a lot of compatible software available for smartphones, tablets and computers. EPUB file standards are maintained by the International Digital Publishing Forum (IDPF). The version EPUB 3 is also endorsed by the Book Industry Study Group (BISG), a leading book trade association for standardized best practices, research, information and events, for packaging of content.

    Read More
     

    Other Supported Conversions

    You can also convert MD into many other file formats including few listed below.

    BMP TO PDF (Bitmap Image)
    CGM TO PDF (Microsoft Word Binary Format)
    EMF TO PDF (Office 2007+ Words Document)
    EPUB TO PDF (Enhanced Metafile Format)
    GIF TO PDF (Graphical Interchange Format)
    HTML TO PDF (Hyper Text Markup Language)
    JPEG TO PDF (Joint Photographic Experts Group)
    LATEX TO PDF (LaTeX Output Text)
    PCL TO PDF (Printer Command Language)
    MD TO PDF (Markdown)
    PDF TO BMP (Bitmap Image)
    PDF TO EPUB (E-book Format)
    PDF TO GIF (Graphical Interchange Format)
    PDF TO HTML (Hyper Text Markup Language)
    PDF TO JPEG (Joint Photographic Experts Group)
    PDF TO PDF/A (Portable Document Format)
    PDF TO PNG (Portable Network Graphics)
    PDF TO PPTX (Microsoft PowerPoint)
    PDF TO SVG (Scalable Vector Graphics)
    PDF TO TEX (Computer Graphics System)
    PDF TO TIFF (Tagged Image Format)
    PDF TO WORD (Microsoft Word Binary Format)
    PDF TO XLSX (Microsoft Excel Open XML Format Spreadsheet file)
    PDF TO XPS (XML Paper Specifications)
    PNG TO PDF (Portable Network Graphics)
    PS TO PDF (PostScript)
    SVG TO PDF (Scalable Vector Graphics)
    TEXT TO PDF (Text Document)
    TIFF TO PDF (Tagged Image Format)
    XPS TO PDF (XML Paper Specifications)