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.
@cmpsr/contentful-core
Advanced tools
Base Composer components for standing up a React/NextJS app that can dynamically render components based on Contentful Model types mapped to components and queries.
Base Composer components for standing up a React/NextJS app that can dynamically render components based on Contentful Model types mapped to components and queries.
Via npm:
npm i --save @cmpsr/contentful-core
Via Yarn:
yarn add @cmpsr/contentful-core
.env
variablesCONTENTFUL_PREVIEW={true|false}
CONTENTFUL_SPACE_ID={Contentful space ID}
CONTENTFUL_ENVIRONMENT={Contentful environment} (defaults to `master`)
CONTENTFUL_ACCESS_TOKEN_DELIVERY={Contentful Delivery Token}
CONTENTFUL_ACCESS_TOKEN_PREVIEW={Contentful Preview Token}
CONTENTFUL_ACCESS_TOKEN={Contentful token used by scripts to generate schema/types}
ContentfulProvider
ComponentRenderer
ComponentRenedererWithContext
ComponentRendererWithQuery
The utility scripts make it easy to generate GraphQL schemas and the associated Typescript definitions for your Contentful setup.
Required script environment variables
CONTENTFUL_SPACE_ID
- The Contentful Space ID.
CONTENTFUL_ACCESS_TOKEN
- The Contentful API access token. This could be the Delivery or Preview API access token, depending on your needs.
Within your project directory, run the following command to generate the fragmentTypes.json
based on your Contentful models.
node ./node_modules/@cmpsr/contentful-core/scripts/graphql-schema.js
Environment Variables
SCHEMA_DIR
- Directory to write the fragmentsTypes.json
to. Defaults to: ./src/schema
Within your project directory, run the following command to generate the fragmentTypes.json
based on your Contentful models.
node ./node_modules/@cmpsr/contentful-core/scripts/graphql-types.js
Environment Variables
TYPES_DIR
- Directory to write the types
files to. Defaults to: ./src/types
GLOBAL_TYPES_FILE
- Path and name for the global types files. Defaults to: ./src/types/global.ts
Add to package.json
{
"scripts": {
...
"graphql:schema": "node ./node_modules/@cmpsr/contentful-core/scripts/graphql-schema.js",
"graphql:types": "node ./node_modules/@cmpsr/contentful-core/scripts/graphql-types.js",
"graphql:possibleTypes": "node ./node_modules/@cmpsr/contentful-core/scripts/graphql-possibleTypes.js"
}
}
lib/apollo.js
- createContetnfulLink
- GraphQL Version
import { ApolloClient, InMemoryCache } from "@apollo/client";
import { withApollo } from "next-apollo";
import { createContentfulLink } from "@cmpsr/contentful-core/lib/client";
import possibleTypes from "types/possibleTypes.json";
const apolloClient = new ApolloClient({
link: createContentfulLink({
space: process.env.CONTENTFUL_SPACE_ID,
accessToken: process.env.CONTENTFUL_ACCESS_TOKEN_DELIVERY
}),
cache: new InMemoryCache({ possibleTypes })
});
export default withApollo(apolloClient);
lib/apollo.js
- ContentfulRestLink
- GraphQL Queries + REST API Version
import { ApolloClient, InMemoryCache } from "@apollo/client";
import { withApollo } from "next-apollo";
import { ContentfulRestLink } from "@cmpsr/contentful-core/lib/client";
import possibleTypes from "types/possibleTypes.json";
const apolloClient = new ApolloClient({
link: new ContentfulRestLink({
space: process.env.CONTENTFUL_SPACE_ID,
accessToken: process.env.CONTENTFUL_ACCESS_TOKEN_DELIVERY
}),
cache: new InMemoryCache({ possibleTypes })
});
export default withApollo(apolloClient);
pages/_app.js
import React from "react";
import withApollo from "lib/apollo";
const MyApp = ({ Component, pageProps }) => <Component {...pageProps} />;
export default withApollo({ ssr: true })(MyApp);
pages/index.js
import React from 'react'
import withApollo from 'lib/apollo'
const Home = props => {
...
};
export default withApollo({ ssr: true })(Home);
Coming soon...
FAQs
Base Composer components for standing up a React/NextJS app that can dynamically render components based on Contentful Model types mapped to components and queries.
The npm package @cmpsr/contentful-core receives a total of 1,296 weekly downloads. As such, @cmpsr/contentful-core popularity was classified as popular.
We found that @cmpsr/contentful-core demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.