
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
@factor/plugin-forum
Advanced tools
Factor forum is a powerful forum solution for your factor app. This plugin comes with essential elements to run an efficient and professional community.
Factor forum is a powerful forum solution for your factor app.
This plugin comes with essential elements to run an efficient and professional community.
To install and start using the forum, just add the package to dependencies:
npm add @factor/plugin-forum
The customization system for this plugin is based on the standard factor-settings.js
API that is provided by Factor. Just add values in your app's settings file to change the values. You can reference the settings file in this project for a list of available configuration options.
// app factor-settings.js
export default {
forum: {
indexRoute: "/my-forum-index-route",
postRoute: "/my-forum-post-base-route",
limit: 6,
},
}
This plugin makes use of a few CSS variables to enhance appearance. To change or setup these variables just add them to your factor-styles.less
file.
The variables used are:
.factor-app {
// The background color of your app
--color-bg: #ffffff;
// Background contrast color (highlights, etc.)
--color-bg-contrast: #f7f7f7;
// The primary color of your application
--color-primary: #0496ff;
// The standard text color in your app
--color-text: #000000;
}
It's possible and easy to override many of the components in the forum. This can be useful if the standard setting based customization just isn't enough.
To do this, first copy the original component from the plugin into you app.
Then reference where it is added as a setting in your factor-settings
:
// Forum factor-settings.js
export default {
forum: {
components: {
topicReply: () => import("./topic-reply.vue"),
},
},
}
And then simply add the overriding version of the component from your app:
// Your app factor-settings.js
export default {
forum: {
components: {
topicReply: () => import("./my-forum/topic-reply.vue"),
},
},
}
FAQs
Factor forum is a powerful forum solution for your factor app. This plugin comes with essential elements to run an efficient and professional community.
The npm package @factor/plugin-forum receives a total of 3 weekly downloads. As such, @factor/plugin-forum popularity was classified as not popular.
We found that @factor/plugin-forum demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.