# ace-angular **Repository Path**: fibird/ace-angular ## Basic Information - **Project Name**: ace-angular - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-03-17 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ace-angular Using Ace Editor in AngularJS ## Requeriments - AngularJS: npm install angular - Ace Builds: npm install ace-builds ## Install ``` npm install ace-angular ``` ## Usage ```html ``` Create angular module ```js var app = angular.module('myapp',['ace.angular']); ``` Using directive ```html
``` Controller ```js $scope.aceOptions = { method: 'sql', theme: 'sqlserver', onLoad: function(editor, session, ace){ // do anythig } } ```