
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
DEV-сервер для разработки.
npm i --save-dev feast-dev
node ./node_modules/feast-dev/index.js --feast-demo
(это просто демка)packages.json
-> scripts
: "start": "./index.js"
touch ./index.js
// Точка входа (dev server)
const feastDev = require('feast-dev');
const jamPath = 'app/packages';
feastDev.createSimpleApp({
name: 'my-cool-project',
port: 2017, // Обязательно поменяйте на что-то своё
feastGUI: '/app/feast/',
publicPath: __dirname,
blocksPath: '/app/blocks/',
injectHTML: [
`<style>
body {
font-size: 13px;
font-family: 'San Francisco', Helvetica, Arial, sans-serif;
}
</style>`
],
injectJS: [
`/${jamPath}/require.config.js`
],
feastGUIOptions: {
cssModules: true
},
socketOptions: {
path: '/app/socket.io'
}
});
location /app {
set $sock_path "http://unix:/tmp/my-project.$developer.sock";
proxy_pass $sock_path;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
}
'use strict';
const feastDev = require('feast-dev');
const jamPath = 'app/packages';
feastDev.createSimpleApp({
// ...
port: `/tmp/my-project.${process.env.USER}.sock`,
});
FAQs
FeastDevServer — live coding & components
We found that feast-dev 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.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.