All Projects → surveyjs → Surveyjs Nodejs

surveyjs / Surveyjs Nodejs

Licence: other
Sample NodeJS backend for SurveyJS: Survey Library and Survey Creator

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Surveyjs Nodejs

Surveyjs react quickstart
React QuickStart Boilerplate - SurveyJS: Survey Library and Survey Creator
Stars: ✭ 88 (+35.38%)
Mutual labels:  survey, form-builder
Survey Creator
Online Survey Creator / Form Builder. See it in action:
Stars: ✭ 497 (+664.62%)
Mutual labels:  survey, form-builder
Formium
The headless form builder for the modern web.
Stars: ✭ 78 (+20%)
Mutual labels:  survey, form-builder
Forms
📝 Simple form & survey app for Nextcloud
Stars: ✭ 127 (+95.38%)
Mutual labels:  survey, form-builder
Angular Surveys
Angular survey / form builder inspired by Google Forms
Stars: ✭ 219 (+236.92%)
Mutual labels:  survey, form-builder
surveyjs angular cli
SurveyJS + Angular CLI Quickstart Template
Stars: ✭ 39 (-40%)
Mutual labels:  survey, form-builder
surveyjs vue quickstart
SurveyJS + Vue Quickstart Template
Stars: ✭ 96 (+47.69%)
Mutual labels:  survey, form-builder
react-quizzes
A React.js solution that offers a UI for creating surveys, forms and quizzes.
Stars: ✭ 25 (-61.54%)
Mutual labels:  survey, form-builder
Vue Ele Form
基于element-ui的数据驱动表单组件
Stars: ✭ 701 (+978.46%)
Mutual labels:  form-builder
Usetheform
React library for composing declarative forms, manage their state, handling their validation and much more.
Stars: ✭ 40 (-38.46%)
Mutual labels:  form-builder
Qa Survey
北航大数据高精尖中心研究张日崇团队对问答系统的调研。包括知识图谱问答系统(KBQA)和文本问答系统(TextQA),每类系统分别对学术界和工业界进行调研。
Stars: ✭ 502 (+672.31%)
Mutual labels:  survey
Data Augmentation Review
List of useful data augmentation resources. You will find here some not common techniques, libraries, links to github repos, papers and others.
Stars: ✭ 785 (+1107.69%)
Mutual labels:  survey
Style Transfer In Text
Paper List for Style Transfer in Text
Stars: ✭ 1,030 (+1484.62%)
Mutual labels:  survey
Form Builder
PHP表单生成器,快速生成现代化的form表单,支持前后端分离。内置复选框、单选框、输入框、下拉选择框,省市区三级联动,时间选择,日期选择,颜色选择,文件/图片上传等17种常用组件。
Stars: ✭ 607 (+833.85%)
Mutual labels:  form-builder
Ohmyform
✏️ Free open source alternative to TypeForm, TellForm, or Google Forms ⛺
Stars: ✭ 1,065 (+1538.46%)
Mutual labels:  survey
Open Source Survey
The Open Source Survey
Stars: ✭ 413 (+535.38%)
Mutual labels:  survey
Laravel Surveyjs
Laravel wrapper for SurveyJS library and Editor
Stars: ✭ 60 (-7.69%)
Mutual labels:  survey
Semantic Form
[READ ONLY] Semantic-UI form helper
Stars: ✭ 51 (-21.54%)
Mutual labels:  form-builder
Knowledge Graphs
A collection of research on knowledge graphs
Stars: ✭ 845 (+1200%)
Mutual labels:  survey
Transferlearning
Transfer learning / domain adaptation / domain generalization / multi-task learning etc. Papers, codes, datasets, applications, tutorials.-迁移学习
Stars: ✭ 8,481 (+12947.69%)
Mutual labels:  survey

Sample NodeJS backend for SurveyJS: Survey library and Survey Creator

Disclaimer

This demo illustrates how to integrate SurveyJS libraries with NodeJS backend. This demo doesn't cover all of real survey service application aspects, such as authentication, authorization, user management, access levels and different security issues. These aspects are covered by backend-specific articles, forums and documentation. This demo is just a sample of intergration and can't be used as a real service.

SurveyJS Home Page

Live Online Survey and Survey Creator Demo

Getting started

  • Install NodeJS.
  • Clone this repository into the surveyjs-nodejs folder (and make it the current directory via cd surveyjs-nodejs).
  • Install npm packages via the npm i command.
  • Run the server via the npm start command.

At this point, the surveyjs-nodejs demo service will be available at http://localhost:3000. If everything is ok, you should see the project home page with a list of available surveys and links to Survey and Survey Creator pages.

  • You can continue with a survey via the Run page, go through the survey and post results to the custom service.
  • You can continue with Survey Creator via the Edit page, change the survey and store survey JSON to the custom service.
  • Saved survey results are available via the Results link.

Adding Postgresql database to the backend

  • Install docker on your computer.
  • Build a postgresql-db docker container via the docker build -t postgresql-db . command in the docker/postgresql-db folder.
  • Start the docker container via the docker run --name dbsrv -p 5432:5432 -d postgresql-db command.

Note: if you are familliar with docker and docker-compose, just run docker-compose up from the docker folder instead of above commands.

  • Change db adapter from InMemoryDBAdapter to Postgresql one.
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].