Provide Project Data
Rather than physical files and folders, Rekit thinks a project consists of different type of meaningful project elements. That is project data.
Introduction
Provide Project Data
module.exports = {
name: 'my-plugin',
app: {
getProjectData() {
return {
elements: ['root'],
elementById: {
root: { id: 'v:root', name: 'Root', type: 'root' }
}
};
}
}
};Element Object Schema
API Description
Organize Multiple Files into an Element
Element in Project Explorer
Show Element in the Tabs Bar

Element in Quick Open
Last updated