xlsx-to-surveyjs
v0.1.1
Published
Convert XLSX sheets (each sheet = form/page) into SurveyJS JSON. CLI + Node API.
Maintainers
Readme
xlsx-to-surveyjs
Convert XLSX sheets into SurveyJS JSON forms.
Install
npm install -g xlsx-to-surveyjsCLI Usage
xlsx2surveyjs myfile.xlsx -o output.jsonAPI Usage
import { convertXlsxToSurveyJS } from "xlsx-to-surveyjs";
const forms = convertXlsxToSurveyJS("myfile.xlsx");
console.log(forms);Each sheet becomes a SurveyJS form/page. If an "Expression" column is present, it is converted to a SurveyJS expression.
