New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

dxf-json

Package Overview
Dependencies
Maintainers
1
Versions
60
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dxf-json

perfect dxf parser

latest
Source
npmnpm
Version
0.11.0
Version published
Weekly downloads
575
9.52%
Maintainers
1
Weekly downloads
 
Created
Source

DXF-JSON

License: GPL v3

GitHubGitHub Actions

Visual Studio CodeTypeScript

NPM

DXF parser with rich type definitions.

[!CAUTION] This is parser is not in stable state yet. Until version 1.0, we may often change name or type of the variables. We're adding rich unit/integration test, but there might be unexpected bug or uncovered situation. Note that official DXF specification is poorly documented, so that many informations are missing and even errors exist. Use your own risk. Thank you for your consideration.

Quick Start

npm i dxf-json # or your loved package manager
import { readFileSync } from 'fs'
import { DxfParser } from 'dxf-json'

const content = readFileSync('foo.dxf', 'utf-8')
const parser = new DxfParser()
const parsedDxf = parser.parseSync(content)

// play with your dxf file
const lwPolylines = parsedDxf.entities.filter(
  (entity) => entity.type === 'LWPOLYLINE',
)

About moduleResolution in TypeScript

It's impossible to support both ESM and CJS with node16, because they detect type of modules only by type field in package.json or the extension of files. To support CJS with node16, we have to rename every .d.ts files into .d.cts, not only the file name but also every import expression in source files.

But Node16 is already deprecated, and to maintain the open source society healthy, we decided not to support require at that version. Also we highly recommend to use ESM styled import consistently throughout your source code.

Module ResolutionFrom ESMFrom CJS
node10
node16
bundler

Features

  • Synchronous parsing, asynchronous parsing, and url fetch are possible.
  • Support both ESM and CJS
  • Support TypeScript

[!NOTE] We support standard specification of dxf and AutoCAD features only. We're trying our best to support universal dxf files, but we don't support 3rd party specification.

Current Coverage

For dev branch status, see #52

Based on AutoCAD 2024 DXF Reference

  • HEADER Section
  • CLASSES Section
  • TABLES Section
    • APPID
    • BLOCK_RECORD
    • DIMSTYLE
    • LAYER
    • LTYPE
    • STYLE
    • UCS
    • VIEW
    • VPORT
  • BLOCKS Section
  • ENTITIES Section
    • 3DFACE
    • 3DSOLID
    • ACAD_PROXY_ENTITY
    • ARC
    • ARC_DIMENSION
    • ATTDEF
    • ATTRIB
    • BODY
    • CIRCLE
    • COORDINATION MODEL
    • DIMENSION
    • ELLIPSE
    • HATCH
    • HELIX
    • IMAGE
    • INSERT
    • LEADER
    • LIGHT
    • LINE
    • LWPOLYLINE
    • MESH
    • MLEADER
    • MLEADERSTYLE
    • MLINE
    • MTEXT
    • OLEFRAME
    • OLE2FRAME
    • POINT
    • POLYLINE
    • RAY
    • REGION
    • SECTION
    • SEQEND
    • SHAPE
    • SOLID
    • SPLINE
    • SUN
    • SURFACE
    • TABLE
    • TEXT
    • TOLERANCE
    • TRACE
    • UNDERLAY
    • VERTEX
    • VIEWPORT
    • WIPEOUT
    • XLINE
  • OBJECTS Section
    • DATATABLE
    • DICTIONARY
    • DICTIONARYVAR
    • DIMASSOC
    • FIELD
    • GEODATA
    • GROUP
    • IDBUFFER
    • IMAGEDEF
    • IMAGEDEF_REACTOR
    • LAYER_FILTER
    • LAYER_INDEX
    • LAYOUT
    • LIGHTLIST
    • MATERIAL
    • MLINESTYLE
    • OBJECT_PTR
    • PLOTSETTINGS
    • RASTERVARIABLES
    • RENDER
    • SECTION
    • SORTENSTABLE
    • SPATIAL_FILTER
    • SPATIAL_INDEX
    • SUNSTUDY
    • TABLESTYLE
    • UNDERLAYDEFINITION
    • VBA_PROJECT
    • VISUALSTYLE
    • WIPEOUTVARIABLES
    • XRECORD
  • THUMBNAILIMAGE Section

[!NOTE] The documentation is not ready, but you can check the source code for used types #1 and #2

Parsing Options

Thumbnail Image Format

You can configure how the THUMBNAILIMAGE section is parsed by setting the thumbnailImageFormat option:

import { DxfParser } from 'dxf-json'

// Default: base64 format (ready for web display)
const parser1 = new DxfParser()
const result1 = parser1.parseSync(dxfContent)
// result1.thumbnailImage.data is a base64 string
// Usage: <img src="data:image/bmp;base64,${result1.thumbnailImage.data}" />

// Hex format (raw hexadecimal string)
const parser2 = new DxfParser({ thumbnailImageFormat: 'hex' })
const result2 = parser2.parseSync(dxfContent)
// result2.thumbnailImage.data is a hex string

// Buffer format (Node.js Buffer object)
const parser3 = new DxfParser({ thumbnailImageFormat: 'buffer' })
const result3 = parser3.parseSync(dxfContent)
// result3.thumbnailImage.data is a Buffer
// Save to file: fs.writeFileSync('thumbnail.bmp', result3.thumbnailImage.data)

Available formats:

  • 'base64' (default): Base64-encoded string, ideal for web applications
  • 'hex': Raw hexadecimal string from the DXF file
  • 'buffer': Node.js Buffer object for file operations

[!NOTE] The thumbnail image in DXF files is typically in BMP format.

parseSync

const parser = new DxfParser()
return parser.parseSync(buffer)

parseStream

import fs from 'fs'
const parser = new DxfParser()
const fileStream = fs.createReadStream('dxf file path', { encoding: 'utf8' })
return await parser.parseStream(fileStream)

parseUrl

const parser = new DxfParser()
return await parser.parseFromUrl(url, encoding, RequestInit)

Contribution

See CONTRIBUTING.md

Keywords

dxf

FAQs

Package last updated on 10 Dec 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts