https://github.com/ncform/ncform-ace
ncform ace widget
https://github.com/ncform/ncform-ace
Last synced: 3 months ago
JSON representation
ncform ace widget
- Host: GitHub
- URL: https://github.com/ncform/ncform-ace
- Owner: ncform
- Created: 2019-05-21T08:48:20.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T22:23:43.000Z (over 3 years ago)
- Last Synced: 2025-09-29T10:32:52.843Z (9 months ago)
- Language: Vue
- Size: 1.31 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ncform-ace
ncform-ace widget for [ncform](https://github.com/ncform/ncform)

## Install and basic usage
```
npm i -s @ncform/ncform-ace
```
**Add the widget**
```
import ncformAce from '@ncform/ncform-ace';
Vue.use(vueNcform, { extComponents: {ncformAce} });
// or vm.$ncformAddWidget({name: 'ncformAce', widget: ncformAce});
```
**Use the widget**
```
{
"type": "object",
"properties": {
"name": {
"type": "object",
"widget": "ncform-ace",
"widgetConfig": {
"height": "300px"
}
}
}
}
```
## Project setup
```
npm install
```
### Compiles and hot-reloads for development
```
npm run serve
```
You only need to care about `src/components/index.vue`
### Compiles and minifies for production
```
npm run build
```
### Run your tests
```
npm run test
```
### Lints and fixes files
```
npm run lint
```
### Run your end-to-end tests
```
npm run test:e2e
```
### Run your unit tests
```
npm run test:unit
```