Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
sourcebit
Advanced tools
Sourcebit helps developers build data-driven JAMstack sites by pulling data from any third-party resource
Sourcebit helps developers build data-driven JAMstack sites by pulling data from any third-party resource.
Sourcebit connects to multiple data sources, for example data in a headless CMS like Contentful or Sanity, to a destination, such as a JAMstack site built using Jekyll or Hugo. The easiest way to understand how this works is to see it in action via our video demo on YouTube.
Sourcebit works through the use of two types of plugins:
Read more about the anatomy of a plugin.
For a complete getting started walkthrough, check out this step-by-step tutorial: https://www.stackbit.com/blog/data-driven-jamstack-sourcebit/
To ease the process of configuring Sourcebit, we've created a command-line tool that provides an interactive setup process that will install the project and any necessary plugins. It asks a series of questions defined by each plugin and generates the necessary configuration file (sourcebit.js
) so that you can get up and running in no time.
To start this process, in your project directory run npx create-sourcebit
or, if you've already installed Sourcebit, npm init sourcebit
.
Sourcebit is distributed as an npm module. We recommend using the interactive setup process, but if you would like to manually install it and add it as a dependency to your project, run:
npm install sourcebit --save
The interactive setup process will generate the necessary configuration for you. Manual configuration can be useful in scenarios where you need to customize the existing behavior generated by the setup process or if you are creating a specific configuration that the setup process does not yet support.
Everything about Sourcebit, including its plugins and their parameters, is configured in a JavaScript object that lives in a file called sourcebit.js
. Each plugin can specify options and/or functions as seen in the basic code example below.
It looks something like this:
module.exports = {
plugins: [
{
module: require('sourcebit-some-plugin-1'),
options: {
pluginOption1: 'foo',
pluginOptino2: 'bar'
}
},
{
module: require('sourcebit-some-plugin-2'),
options: {
pluginFunction1: (a, b) => a + b
}
}
]
};
It's important to note that while every plugin block is defined with the module
and options
properties, the actual options passed to each options block varies widely and is defined and documented by each plugin.
To use Sourcebit as a CommonJS module, include it in your project and call its fetch
method.
const sourcebit = require('sourcebit');
const config = require('./sourcebit.js');
const options = {};
sourcebit.fetch(config, options).then(data => {
console.log(data);
});
To use Sourcebit as a command-line tool, once it is installed, run the sourcebit fetch
command in your project directory.
$ sourcebit fetch
Note that if you do not have your local npm_modules on your PATH, you will need to run ./node_modules/.bin/sourcebit fetch
or follow the instructions here to update your PATH.
When working on content in the CMS, you can automatically update content locally with changes made in the CMS by using the --watch
flag.
$ sourcebit fetch --watch
Sourcebit core has built-in support for caching. Whenever a plugin uses setPluginContext
to save data to its context object, it gets persisted to a file named .sourcebit-cache.json
on disk. When sourcebit fetch
is next executed, the context object will be automatically populated with the cached content before the bootstrap
method is invoked.
To disable cache, add the flag --no-cache
to the sourcebit fetch
command if you're using the CLI. If you're using the CommonJS module, set cache: false
in the options
object (i.e. the second parameter of fetch()
).
For a step-by-step guide to creating a plugin for Sourcebit, check out this tutorial: https://www.stackbit.com/blog/sourcebit-plugin/
Sourcebit is designed to be completely extensible. Documentation on how to build plugins can be found on our wiki.
sourcebit-sample-plugin
: A sample plugin with mock data, for demonstration/educational purposes.sourcebit-source-contentful
: A source plugin for Contentful.sourcebit-source-sanity
: A source plugin for Sanity.@kentico/sourcebit-source-kontent
: A source plugin for Kontent.sourcebit-target-hugo
: A target plugin for the Hugo static site generator.sourcebit-target-jekyll
: A target plugin for the Jekyll static site generator.sourcebit-target-next
: A target plugin for the Next.js framework.sourcebit-transform-assets
: A plugin for downloading remote assetsIf you'd like to contribute to Sourcebit, either by adding a feature to the core application or by creating a brand new plugin, check out our contributing guidelines.
FAQs
Sourcebit helps developers build data-driven JAMstack sites by pulling data from any third-party resource
The npm package sourcebit receives a total of 129 weekly downloads. As such, sourcebit popularity was classified as not popular.
We found that sourcebit demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 15 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.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.