Release 0.9.9 adding typescript support to ceddl polyfill
Today, we’re excited to announce TypeScript support for ceddl polyfill via release 0.9.9. Also, in this update, increasing downloads require us to better understand our users.
npm install --save @types/ceddl__ceddl-polyfill
Minimal Typescript example:
import { ceddl, ModelConfig } from '@ceddl/ceddl-polyfill';
const PageModelConfig: ModelConfig = {
key: 'page',
root: 'true',
fields: {
section: {
type: ceddl.modelFactory.fields.StringField,
required: true
}
}
}
};
ceddl.modelFactory.create(PageModelConfig);
ceddl.initialize();
Who are you and what do you do?
With the number of downloads increasing, we would like to better understand our user group. Here are a few questions that will tee us up for a good conversation:
- Can you tell me about your project in a few sentences?
- How did you hear about this polyfill? What specifically interests you about it?
- What environment are you using ceddl-polyfill in, and what does your technology stack look like.
- How large is your team?
- Are you talking to others about this project? What would you prefer as a communication channel?
- Anything else that we should know about?
Thanks! ceddl working group.