Gathering detailed insights and metrics for @cadwork/web-ifc
Gathering detailed insights and metrics for @cadwork/web-ifc
npm install @cadwork/web-ifc
Typescript
Module System
Node Version
NPM Version
78.3
Supply Chain
98.8
Quality
77.8
Maintenance
100
Vulnerability
100
License
Cumulative downloads
Total Downloads
Last day
0%
2
Compared to previous day
Last week
-50%
4
Compared to previous week
Last month
700%
16
Compared to previous month
Last year
-81.3%
156
Compared to previous year
ifc.js | documentation | API Docs | demo | example models | discord | usage examples | npm package | contributing
web-ifc is a javascript library to read and write ifc files, at native speeds. web-ifc is part of the ifc.js project, which aims to lower the threshold for developing open BIM applications.
Although it is quite stable and fast already, web-ifc is in pre-alpha status until ifc support matures. The list of currently supported ifc elements, or level of support for different ifc types, is an undocumented work in progress.
Depending on your models, web-ifc may be quick and correct, or slow and broken. If your model does not work as expected please raise an issue and attach the model if possible, or contact us and we can discuss passing the model confidentially.
npm install web-ifc
1const WebIFC = require("web-ifc/web-ifc-api.js");
2
3// initialize the API
4const ifcApi = new WebIFC.IfcAPI();
5
6// initialize the library
7await ifcApi.Init();
8
9// open a model from data
10let modelID = ifcApi.OpenModel(/* IFC data as a string or UInt8Array */, /* optional settings object */, );
11
12// the model is now loaded! use modelID to fetch geometry or properties
13// checkout examples/usage for some details on how to read/write IFC
14
15// close the model, all memory is freed
16ifcApi.CloseModel(modelID);
17
See examples for more details on how to use web-ifc.
The current live build of web-ifc is avaialble here. Using this allows you to test newest fixes before we make a release. If you wish to use this version then download the zip file and place the contents of the dist folder manually into your node_modules/web-ifc folder. I.e if you are using web-ifc-three then it will be node_modules/web-ifc-three/node_modules/web-ifc. Please not you must replace the javascript and the WASM.
These are the requirements needed to build web-ifc (only for those that wish to build their own version).
The WASM library is built through emscripten, please see the emscripten installation guide for information on how to set up emscripten. Afterwards emsdk_env
needs to be in your path.
To build the WASM you also need CMAKE see here and (on windows) MINGW see here - once installed (and in your path) run npm run setup-mingw
to configure the environment for web-ifc.
Run npm install
to install all dependencies.
Run npm run setup-env
whenever you open a new terminal, this will set up the required emscripten environment variables for you to compile code.
Run npm run build-release
to build a release version of the wasm binary and the accompanying web-ifc api. It will be placed in ./dist
.
If you wish to build the WASM with debugging enabled you can run npm run build-debug
. This will enable you to inspect debugging information better when running web-ifc.
Run npm run dev
to launch a development server with a basic ifc file viewer.
Although the primary focus of the library is to be used through WebAssembly in the browser/nodejs, the project can be used stand-alone as a c++ library or executable. See here for a simple entry point to get started.
Want to help out? Great!
Please checkout our contribution suggestsions.
No vulnerabilities found.
No security vulnerabilities found.