Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
docpad-plugin-cleanurls
Advanced tools
Adds support for clean URLs to DocPad
docpad install cleanurls
static
In non-static environments we work by setting the document's url to it's clean url. This means that redirection occurs on the dynamic server level.
For the static
environment (i.e. when running docpad with the --env static
flag, e.g. running docpad generate --env static
) we will set the static
plugin configuration option to true
. This will in addition to performing redirections via the built-in dynamic server within DocPad for speed, we will also write special static redirection HTML files to the output directory, that will redirect the user to the new clean location (e.g. the document pages/welcome.html
will not we outputted to pages/welcome/index.html
, with pages/welcome.html
now being a special HTML redirect document to the clean location).
If you would like to always use the static mode, you can set the static
plugin configuration option to true by doing:
plugins:
cleanurls:
static: true
If you would like to disable the static mode for the static environment, you can do so by doing:
environments:
static:
plugins:
cleanurls:
static: false
trailingSlashes
Enable this plugin configuration option to generate document.url
s like '/beep/'
instead of /beep
. Defaults to false
.
collectionName
You can use this plugin configuration option (defaults to html
) to tell the cleanurls plugin to use your own custom collection for which documents to apply cleanurls to.
For insstance, if you are wanting to remove all cleanurls for all documents that have cleanurls: false
in the meta data, then you could do the following in your docpad configuration file:
# Define a custom collection for cleanurls that ignores the documents we don't want
collections:
cleanurls: ->
@getCollection('html').findAllLive(cleanurls: $ne: false)
# Tell our clean urls plugin to use this collection
plugins:
cleanurls:
collectionName: 'cleanurls'
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.
These amazing people are maintaining this project:
No sponsors yet! Will you be the first?
These amazing people have contributed code to this project:
Licensed under the incredibly permissive MIT license
Copyright © 2012+ Bevry Pty Ltd us@bevry.me (http://bevry.me)
Copyright © 2011 Benjamin Lupton b@lupton.cc (http://balupton.com)
FAQs
Adds support for clean URLs to DocPad
We found that docpad-plugin-cleanurls demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers 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.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.