Socket
Book a DemoInstallSign in
Socket

cms-module-server

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cms-module-server

This package complements the [cms-module-client](https://www.npmjs.com/package/cms-module-client) package by adding functions in the server to render and save content provided from the client package.

0.2.4
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

CMS Module Server

This package complements the cms-module-client package by adding functions in the server to render and save content provided from the client package.

Installation

To install this package simply run:

npm install cms-module-server

Usage

To use this package properly you will need to connect to a MongoDB server using the mongoose package.

To call the save function with data from the client:

const cms = require("cms-module-server");
const express = require("express");
const app = express();

const PORT = process.env.PORT;

app.post("cms/save", (req, res) => {
	// There should be some kind of authentication here...

	cms.save(req, res);
});

app.listen(PORT);

To call the publish function with data from the client:

const cms = require("cms-module-server");
const express = require("express");
const app = express();

const PORT = process.env.PORT;

app.post("cms/publish", (req, res) => {
	// There should be some kind of authentication here...

	cms.publish(req, res);
});

app.listen(PORT);

To call the upload function with data from the client:

const cms = require("cms-module-server");
const express = require("express");
const app = express();

const PORT = process.env.PORT;

app.post("cms/upload", (req, res) => {
	// There should be some kind of authentication here...

	cms.upload(req, res);
});

app.listen(PORT);

To render content that is published:

const cms = require("cms-module-server");
const express = require("express");
const app = express();

const PORT = process.env.PORT;

app.use(cms.render("dist"));

// Use express.static to handle default files.
app.use(express.static("dist"));

app.listen(PORT);

Security

It is important that you authenticate users in your endpoints. The cms-module-client provides an auth option that sets an Authorization header which can be read on the server. But the help from this package ends there, you will have to solve the rest yourself.

Keywords

node

FAQs

Package last updated on 08 Nov 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.