Cotype manages structured content that can accessed via APIs. The system itself is not concerned with the actual rendering of the data - this is left completely to the consumer which could be a server that generates HTML, a client-rendered web app or a native app that reads the data via HTTP.
Cotype is not free software.
In order to run cotype on a public server you must purchase a valid license.
Please contact info@cellular.de for inquiries.
npm install @cotype/core
// server.ts
import { init, Opts /* ... */ } from "@cotype/core";
const port = 1337;
const opts: Opts = {
/* ...see https://github.com/cotype/core#options */
};
/* Init cotype and receive express app */
init(opts).then(({ app }) => {
/* Make the app listen on a specific port
* see https://nodejs.org/api/net.html#net_server_listen */
app.listen(port, () =>
console.log(`Cotype listening on http://localhost:${port}!`)
);
}, console.error);
-
Describes what content types exist, which fields they have and how they are edited.
-
Adapter providing the database connection of the server.
Cotype provides a Knex.js adapter that can be configured with a Knex configuration object.
import { init, knexAdapter } from "@cotype/core"; init({ /* ... */ persistenceAdapter: knexAdapter({ /* see https://knexjs.org/#Installation-client */ }) });
-
When files are uploaded, the meta data is stored in the database while the binary data is stored using this adapter.
Cotype comes with an adapter that stores all data on the local file system.
import { init, FsStorage } from "@cotype/core"; init({ /* ... */ storage: new FsStorage("./uploads") });
-
Thumbnail creator for uploaded image files.
Cotype does not come with a default provider for size-reasons.Please see
@cotype/local-thumbnail-provider
for a straight-forward implementation.
-
Default:
/
Can be used to mount the app on a sub-path. For example
http://localhost:3000/cms
.import { init } from "@cotype/core"; init({ /* ... */ basePath: "/cms" });
-
The server uses a cookie-session that holds nothing but the user's id.
See cookie-session#options for details.
The cookie is signed to prevent any sort of tampering. Therefore a secret must be provided using
sessionOpts.secret
or via theSESSION_SECRET
env var. If omitted, a random string will be generated, which means that sessions will become invalid once the server is restarted. -
Absolute path to a directory containing content migration scripts. The scripts are read in alphabetic order and executed only once. Each script must export a function that takes exactly one argument: a MigrationContext.
The data can be accessed via REST. The server provides an interactive API explorer that developers can use to browse the content model.
NOTE: THe content API is read-only. Modifying content is only possible via the management API that is used by the UI.
The content model is defined using only primitives, so it can be serialized into JSON. It describes what content types exist, which fields they have and how they are edited.
For a list of available content models check out the typings file.
Currently the content model is part of the server and changes require a re-deployment/restart in order to take effect. But since the model is plain JSON it would be pretty easy to manage content types directly in the CMS and store is alongside the data.
The data is stored in a Database. Built-In entities (like users, roles, etc.) live in a traditional relational model, whereas all content is stored as JSON in a common table. Content is immutable and each change creates a new revision. If the publish/draft system is enabled for a given content type, API clients won't see the changes until they are published (or a preview is requested).
There are two materialized views (one for all published, one for the latest versions) that have indexes on the JSON data as well as a full-text index for searching.
Pull-Requests, Issues, Feedback, Coffee and positive thoughts are very welcome!
If you want to work on this project locally using the development environment or want to know more about what we consider "internal stuff", please refer to the contribution guidelines