
Product
Introducing PHP and Composer Support in Socket
Socket now supports PHP with full Composer and Packagist integration, enabling developers to search packages, generate SBOMs, and protect their PHP dependencies from supply chain threats.
docpad-plugin-mongodb
Advanced tools
Import MongoDB collections into DocPad collections.
Inspired by https://github.com/simonh1000/docpad-plugin-mongo and based on https://github.com/docpad/docpad-plugin-tumblr/
docpad install mongodb
Add the following to your docpad configuration file via:
plugins:
mongodb:
collections: [
connectionString: "mongodb://localhost/blog" # format is "mongodb://username:password@hostname:port/dbname?options"
collectionName: "posts"
relativeDirPath: "blog"
extension: ".html"
sort: date: 1 # newest first
meta:
layout: "blogpost"
]
plugins:
mongodb:
collectionDefaults:
connectionString: "mongodb://localhost/blog" # format is "mongodb://username:password@hostname:port/dbname?options"
collections: [
{
# connectionString is imported from the defaults
collectionName: "posts"
relativeDirPath: "blog"
extension: '.html.eco'
sort: date: 1 # newest first
injectDocumentHelper: (document) ->
document.setMeta(
layout: 'default'
tags: (document.get('tags') or []).concat(['post'])
data: """
<%- @partial('post/'+@document.tumblr.type, @extend({}, @document, @document.tumblr)) %>
"""
)
},
{
collectionName: "comments"
extension: '.html.markup'
sort: date: -1 #oldest first
meta:
write: false
},
{
connectionString: "mongodb://localhost/stats"
collectionName: "stats"
extension: ".json"
}
]
Each configuration object in collections inherits defalt values from collectionDefaults and then from the built-in defaults:
connectionString: process.env.MONGOLAB_URI || process.env.MONGOHQ_URL || "mongodb://localhost/localdev"
relativeDirPath: null # defaults to collectionName
extension: ".json"
injectDocumentHelper: null
collectionName: "mongodb"
meta: {}
The default directory for where the imported documents will go inside is the collectionName.
You can override this using the relativeDirPath plugin config option.
The default content for the imported documents is JSON data. You can can customise this with the injectDocumentHelper plugin configuration option which is a function that takes in a single Document Model.
If you would like to render a template, add a layout, and change the extension, you can this with the eco and partials plugins and following collection configuration:
extension: '.html.eco'
injectDocumentHelper: (document) ->
document.setMeta(
layout: 'default'
tags: (document.get('tags') or []).concat(['post'])
data: """
<%- @partial('post/'+@document.tumblr.type, @extend({}, @document, @document.tumblr)) %>
"""
)
The sort field is passed as the comparator to Query Engine which tries it as a
MongoDB-style sort first and then a
Backbone.js comparator second.
As imported documents are just like normal documents, you can also list them just as you would other documents. Here is an example of a index.html.eco file that would output the titles and links to all the blog posts from the simple example above:
<h2>Blog:</h2>
<ul><% for post in @getCollection('posts').toJSON(): %>
<li>
<a href="<%= post.url %>"><%= post.title %></a>
</li>
<% end %></ul>
Discover the change history by heading on over to the HISTORY.md file.
Discover how you can contribute by heading on over to the CONTRIBUTING.md file.
Licensed under the incredibly permissive MIT license
Copyright © Bevry Pty Ltd us@bevry.me (http://bevry.me)
FAQs
Import your mongodb collections to DocPad collections
The npm package docpad-plugin-mongodb receives a total of 1 weekly downloads. As such, docpad-plugin-mongodb popularity was classified as not popular.
We found that docpad-plugin-mongodb demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Product
Socket now supports PHP with full Composer and Packagist integration, enabling developers to search packages, generate SBOMs, and protect their PHP dependencies from supply chain threats.

Security News
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.

Research
/Security News
Chrome extension CL Suite by @CLMasters neutralizes 2FA for Facebook and Meta Business accounts while exfiltrating Business Manager contact and analytics data.