Create surveys, polls, and
quizzes
for your JavaScript application free.

Open-source MIT-licensed JavaScript UI library
for surveys and web forms.

SurveyJS Form Library allows you to embed surveys and forms in your JavaScript application, and store their contents and results on your own servers.

Web Forms

SurveyJS transforms the way of dealing with web forms. Discover its key features and the benefits of
introducing Form Library to your form workflow.

Quick Start Demos

Over 100 free demos for React, Angular, Vue, jQuery, and Knockout to get you started.

100% Transparency

Open source code on GitHub and changelog of the library development history.

Drag-and-Drop UI

No-code WYSIWYG form builder to auto generate a form data model—a schema written in JSON.

Input Field Variety

20+ built-in question types and support for custom question types.

Multilingual Support

Community-supported UI localization for 50+ languages.

Backend Freedom

Compatibility with any server + database combination.

Unique Design

Built-in themes and full CSS customization.

Input Type Control

Input validation and data pre-processing.

Secure Data Storage

All sensitive respondent data is securely stored on your own servers.

See the SurveyJS Form Library in Action

Form Library is extensible and allows you to change its behavior as your needs require.
Take advantage of more than a hundred free demos showing functionality
that includes all popular scenarios.

Question Types
Survey Logic
Text Formatting
Dynamic Questions
Complex Forms
Responsive Design
Localization
Create a Quiz

        
import { Component, OnInit } from '@angular/core';
import { Model } from "survey-core";

const surveyJson = {
  // ...
};
@Component({
  // ...
})
export class AppComponent implements OnInit {
    surveyModel: Model;
    ngOnInit() {
        const survey = new Model(surveyJson);
        this.surveyModel = survey;
    }
}

//-----------------------------------------------
// <survey [model] = "surveyModel" ></survey>
//-----------------------------------------------
            
        
        
import "survey-core/defaultV2.css";
import { Model } from "survey-core";
import { Survey } from "survey-react-ui";

const surveyJson = {
  // ...
};

export function SurveyComponent() {
  const survey = new Model(surveyJson);
  return <Survey model={survey} />;
}
            
        
        
<template>
  <Survey :survey="survey" />
</template>

<script>
import "survey-core/defaultV2.css";
import { Model } from "survey-core";
import { Survey } from 'survey-vue-ui;

const surveyJson = { ... };

export default {
  components: {
    Survey
  },
  data() {
    const survey = new Model(surveyJson);
    return {
      survey
    }
  },
}
</script>
            
        
        
const surveyJson = {
  // ...
};

const survey = new Survey.Model(surveyJson);

$(function () {
  $("#surveyContainer").Survey({ model: survey });
});
            
        

Get Started in a Few Simple Steps

Form Library lets you load dynamic, multi-language, on-page forms and have them run
on any of your favourite front-end platforms.

Choose your front-end. Build forms in

Install the survey-react-ui npm Package.

npm install survey-angular-ui --save

Import a CSS file of a built-in theme to configure a style of your form.

Instantiate a survey Model by passing the data schema to the Model creator. A model describes the layout and contents of your survey.

Import a framework-specific rendering component and pass the Model instance to the component's model attribute.

Add a free example of survey data 'schema' in JSON and run the npm start command. Your entire form is defined as a data model (a ‘schema’) written in JSON.

Still got questions?

Check our FAQ or

e-mail us at info@devsoftbaltic.com

More free demos?

View Demos

Why we use cookies.

This site uses cookies to make your browsing experience more convenient and personal. Cookies store useful information on your computer to help us improve the efficiency and relevance of our site for you. In some cases, they are essential to making the site work properly. By accessing this site, you consent to the use of cookies.

For more information, refer to DevSoft Baltic’ privacy policy and cookie policy.

Your renewal subscription expires soon.

Since the license is perpetual, you will still have permanent access to the product versions released within the first 12 month of the original purchase date.

If you wish to continue receiving technical support from our Help Desk specialists and maintain access to the latest product updates, make sure to renew your subscription by clicking the "Renew" button below.

Your renewal subscription has expired.

Since the license is perpetual, you will still have permanent access to the product versions released within the first 12 month of the original purchase date.

If you wish to continue receiving technical support from our Help Desk specialists and maintain access to the latest product updates, make sure to renew your subscription by clicking the "Renew" button below.