![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@gooddata/grunt-grizzly
Advanced tools
Simple GoodData proxy server for client development.
$ yarn add grunt-grizzly
$ yarn grizzly -h
Usage: grizzly -b [backend] -p [port] -d [document-root]
Options:
-p, --port local port to listen on [default: 8443]
-h, --help show this help
-b, --backend backend host name [default: "secure.gooddata.com"]
-d, --document-root document root directory to use
-s, --stub stub file or function
-c, --cert path cert file
-k, --key path to key file
-a, --autoassignPort increment port number and if specified port is already in use
To run grizzly as a standalone server, the only thing you need to do is to run:
grunt
from root directory of grunt-grizzly.
This module registers grizzly
grunt task, so you can add
grunt.task.loadNpmTasks('grunt-grizzly');
grunt.task.run('grizzly');
to your gruntfile.
grizzly
task provides following configuration options:
backend
host name of proxy endpoint
Defaults to secure.gooddata.com
.
host
alias of backend
port
number of local port to listen to.
Defaults to 8443
root
root directory, relative to project root.
Default is base
.
dir
alias of root
cert
path to certificate to use. Defaults to <grunt-grizzly>/cert/server.crt
.
You will hardly ever need to change this value.
key
path to ssl key to use. Defaults to <grunt-grizzly>/cert/server.key
.
You will hardly ever need to change this value.
keepAlive
This is not an option, it is a flag!!!
If set, e.g. by calling
grunt.task.run('grizzly:keepAlive');
then grizzly will not exit after the server has been started. This is useful
when starting standalone grizzly with no grunt tasks after grizzly
task.
If not specified, grunt will execute next task normally.
stub
express instance setup function/module that is called with an instance
of express
app before setting up the static root directory handler.
Form: function or path to file that exports a function, i.e.
module.exports = function(app) {
// do something with app here
}
quiet
This is not an option, it is a flag!!!
If set, grizzly will not produce any output (i.e. will not log anything to console).
There are no integration tests so far. Unit tests are stored under test/unit/cases
and can be run with grunt test
. Jasmine is used.
FAQs
Simple GoodData proxy server for client development.
We found that @gooddata/grunt-grizzly demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 72 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.