All Projects → vishal7201 → docx-pdf-pagecount

vishal7201 / docx-pdf-pagecount

Licence: MIT license
A npm module to page count od pdf and docx files

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to docx-pdf-pagecount

Hrconvert2
A self-hosted, drag-and-drop, & nosql file conversion server that supports 62x file formats.
Stars: ✭ 132 (+500%)
Mutual labels:  docx
Documentserver
ONLYOFFICE Document Server is an online office suite comprising viewers and editors for texts, spreadsheets and presentations, fully compatible with Office Open XML formats: .docx, .xlsx, .pptx and enabling collaborative editing in real time.
Stars: ✭ 2,335 (+10513.64%)
Mutual labels:  docx
ilovepdf
Telegram Bot that helps you to convert Images to pdf, pdf to images, 45+ file formats to pdf, more features Soon..
Stars: ✭ 140 (+536.36%)
Mutual labels:  docx
Html2openxml
Html2OpenXml is a small .Net library that convert simple or advanced HTML to plain OpenXml components. This program has started in 2009, initially to convert user's comments from SharePoint to Word.
Stars: ✭ 142 (+545.45%)
Mutual labels:  docx
Phpstamp
The XSL-way templating library for MS Office Word DOCX documents.
Stars: ✭ 150 (+581.82%)
Mutual labels:  docx
P2.
📄 p2. - Simple and secure PDF to PNG server.
Stars: ✭ 191 (+768.18%)
Mutual labels:  docx
Etherpad Lite
Etherpad: A modern really-real-time collaborative document editor.
Stars: ✭ 11,937 (+54159.09%)
Mutual labels:  docx
my-writing-workflow
Tutorial for converting markdown files in to APA-formatted docs, based on my workflow.
Stars: ✭ 35 (+59.09%)
Mutual labels:  docx
Poi Tl
Generate awesome word(docx) with template
Stars: ✭ 2,306 (+10381.82%)
Mutual labels:  docx
Open Xml Sdk
Open XML SDK by Microsoft
Stars: ✭ 3,005 (+13559.09%)
Mutual labels:  docx
Sonar Cnes Report
Generates analysis reports from SonarQube web API.
Stars: ✭ 145 (+559.09%)
Mutual labels:  docx
Plagiarism Checker
A utility to check if a document's contents are plagiarised
Stars: ✭ 149 (+577.27%)
Mutual labels:  docx
Duckx
C++ library for creating and updating Microsoft Word (.docx) files.
Stars: ✭ 214 (+872.73%)
Mutual labels:  docx
Docxtractr
✂️ Extract Tables from Microsoft Word Documents with R
Stars: ✭ 139 (+531.82%)
Mutual labels:  docx
docx-to-pdf-on-AWS-Lambda
Microsoft Word doc/docx to PDF conversion on AWS Lambda using Node.js
Stars: ✭ 42 (+90.91%)
Mutual labels:  docx
Net Core Docx Html To Pdf Converter
.NET Core library to create custom reports based on Word docx or HTML documents and convert to PDF
Stars: ✭ 133 (+504.55%)
Mutual labels:  docx
Pswriteword
PSWriteWord is powershell module to create Microsoft Word documents without Microsoft Word installed...
Stars: ✭ 180 (+718.18%)
Mutual labels:  docx
kodbox
kodbox is a file manager for web. It is a newly designed product based on kodexplorer. It is also a web code editor, which allows you to develop websites directly within the web browser.You can run kodbox either online or locally,on Linux, Windows or Mac based platforms
Stars: ✭ 1,188 (+5300%)
Mutual labels:  docx
mathtype-extension
Calabash extension step to convert MathType OLE objects to MathML
Stars: ✭ 15 (-31.82%)
Mutual labels:  docx
Gotenberg
A Docker-powered stateless API for PDF files.
Stars: ✭ 3,272 (+14772.73%)
Mutual labels:  docx

docx-pdf-pagecount

A npm module to page count of a docx or pdf file.

Installation

npm install docx-pdf-pagecount

Usage

const getPageCount = require('docx-pdf-pagecount');

getPageCount('E:/sample/document/aa/test.docx')
  .then(pages => {
    console.log(pages);
  })
  .catch((err) => {
    console.log(err);
  });
  

getPageCount('E:/sample/document/vb.pdf')
  .then(pages => {
    console.log(pages);
  })
  .catch((err) => {
    console.log(err);
  });
  
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].