This project was generated with Angular CLI version 1.0.0 and modified to use SurveyJS and Editor libraries.
You can just clone this repo and run "ng serve" command.
-
Create a new project.
ng new surveyjs-angular-cli cd surveyjs-angular-cli -
Add SurveyJS + Editor dependencies.
npm install -save survey-angular npm install -save surveyjs-editor -
Add knockout typings to the '/src/tsconfig.app.json' file.
"types": [ "knockout" ] -
Add SurveyJS and Editor components files.
src/app/survey.component.ts src/app/survey.editor.component.ts -
Use compoents in the app.module.ts file.
import { SurveyComponent } from './survey.component'; import { SurveyEditorComponent } from './survey.editor.component'; @NgModule({ declarations: [ AppComponent, SurveyComponent, SurveyEditorComponent ], -
Change markup in the app.component.html file.
<h1>Survey</h1><survey [json]="json"></survey> <h1>Survey JS Editor</h1><survey-editor></survey-editor> -
Add "jQuery polyfill" for bootstrap in the polyfills.ts file (angular/angular-cli#2129).
import * as jQuery from 'jquery'; window['jQuery'] = jQuery; -
Run project.
ng serve
Run ng serve for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.
Run ng generate component component-name to generate a new component. You can also use ng generate directive/pipe/service/class/module.
Run ng build to build the project. The build artifacts will be stored in the dist/ directory. Use the -prod flag for a production build.
Run ng test to execute the unit tests via Karma.
Run ng e2e to execute the end-to-end tests via Protractor.
Before running the tests make sure you are serving the app via ng serve.
To get more help on the Angular CLI use ng help or go check out the Angular CLI README.